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

16 lines
325 B
HTML

@use crate::State;
@use super::layout;
@(state: &State)
@:layout(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>
})