pict-rs-aggregator/templates/not_found.rs.html
2023-01-29 13:51:04 -06:00

16 lines
319 B
HTML

@use crate::State;
@use super::layout_html;
@(state: &State)
@:layout_html(state, "Not Found", None, {}, {
<section>
<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>
</section>
})