pict-rs-proxy/templates/deleted.rs.html

13 lines
228 B
HTML
Raw Normal View History

2020-06-18 00:46:57 +00:00
@use super::{layout_html, return_home_html};
@(filename: &str)
2020-12-03 19:40:16 +00:00
@:layout_html(&format!("Deleted {}", filename), None, {}, {
<section>
<article>
<h3>Deleted @filename</h3>
</article>
@:return_home_html()
</section>
2020-06-18 00:46:57 +00:00
})