14 lines
297 B
HTML
14 lines
297 B
HTML
@use super::{header_html, footer_html};
|
|
|
|
@(why: String)
|
|
|
|
@:header_html(Some("Error"), None)
|
|
|
|
<h1>Error</h1>
|
|
|
|
<code><pre>@why</pre></code>
|
|
|
|
<p>You could try to <a href="/">go home</a> or <a href="https://github.com/Xe/site/issues/new">report this issue</a> so it can be fixed.</p>
|
|
|
|
@:footer_html()
|