pict-rs-aggregator/templates/not_found.rs.html
2020-12-08 16:03:18 -06:00

16 lines
326 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_aggregation_path()">Return Home</a></p>
</article>
</section>
})