pict-rs-aggregator/templates/not_found.rs.html

16 lines
335 B
HTML
Raw Permalink Normal View History

2020-12-08 21:59:55 +00:00
@use crate::State;
2023-01-29 19:51:04 +00:00
@use super::layout_html;
2020-12-08 21:59:55 +00:00
@(state: &State)
2023-01-29 19:51:04 +00:00
@:layout_html(state, "Not Found", None, {}, {
2020-12-08 21:59:55 +00:00
<section>
2023-03-10 03:49:22 +00:00
<article class="content-group">
<h3>Not Found</h3>
</article>
<article class="content-group">
<p><a href="@state.create_collection_path()">Return Home</a></p>
</article>
2020-12-08 21:59:55 +00:00
</section>
})