pict-rs-proxy/templates/deleted.rs.html
Aode (Lion) 903134c7c7
All checks were successful
continuous-integration/drone/push Build is passing
Use pict-rs's background uploading feature
2022-05-02 20:38:46 -05:00

13 lines
228 B
HTML

@use super::{layout_html, return_home_html};
@(filename: &str)
@:layout_html(&format!("Deleted {}", filename), None, {}, {
<section>
<article>
<h3>Deleted @filename</h3>
</article>
@:return_home_html()
</section>
})