pict-rs-aggregator/templates/not_found.rs.html
asonix 32aaa1c464
Some checks failed
continuous-integration/drone/push Build is failing
Add flake
2023-03-09 21:51:22 -06:00

16 lines
335 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>
})