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

19 lines
396 B
HTML

@use crate::State;
@use super::{layout_html, return_home_html};
@(error: &str, state: &State)
@:layout_html(state, "Error", Some(error), {}, {
<section>
<article>
<div class="content-group">
<h3>Error</h3>
</div>
<div class="content-group">
<p class="subtitle">@error</p>
</div>
</article>
</section>
@:return_home_html(state)
})