gitlin/views/error.html

20 行
565 B
HTML
Raw 通常表示 履歴

{{ template "header" .}}
<main>
2023-03-08 01:58:55 +09:00
<div class="center">
<h1 style="color: red">Error</h1>
<h2>
Someone pushed to production. Just kidding, that's probably not what
happened. Here's the error:
</h2>
<pre class="error">{{.error}}</pre>
2023-03-08 01:58:55 +09:00
<h3>
Think this is a bug?
<a href="https://codeberg.org/gothub/gothub/issues" target="_blank"
>Create an issue on Codeberg.</a
>
Or view this page on <a rel="noreferrer" href="https://github.com{{.link}}">GitHub</a>
2023-03-08 01:58:55 +09:00
</h3>
</div>
2022-12-01 02:47:59 +09:00
</main>
2023-03-08 01:58:55 +09:00
{{ template "footer" .}}