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

16 lines
326 B
HTML
Raw Normal View History

2020-12-08 21:59:55 +00:00
@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>
})