templates: fix 404 and 500
This commit is contained in:
parent
f04137f841
commit
7d99afc5cd
4 changed files with 14 additions and 4 deletions
|
@ -1,7 +1,9 @@
|
||||||
|
{{ define "404" }}
|
||||||
<html>
|
<html>
|
||||||
<title>404</title>
|
<title>404</title>
|
||||||
{{ template "header" . }}
|
{{ template "head" . }}
|
||||||
<body>
|
<body>
|
||||||
404 — nothing like that here
|
404 — nothing like that here
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
{{ end }}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{{ define "500" }}
|
||||||
<html>
|
<html>
|
||||||
<title>500</title>
|
<title>500</title>
|
||||||
{{ template "header" . }}
|
{{ template "header" . }}
|
||||||
|
@ -5,3 +6,4 @@
|
||||||
500 — something broke!
|
500 — something broke!
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
{{ end }}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
{{ define "nav" }}
|
{{ define "nav" }}
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li>some
|
<li><a href="/">all repos</a>
|
||||||
<li>thing
|
<li><a href="/{{ .name }}">{{ .name }}</a>
|
||||||
<li>here
|
<li><a href="/{{ .name }}/tree/{{ .ref }}/">tree</a>
|
||||||
|
<li><a href="/{{ .name }}/log/{{ .ref }}">log</a>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -44,6 +44,11 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</table>
|
</table>
|
||||||
|
<article>
|
||||||
|
<pre>
|
||||||
|
{{- if .readme }}{{ .readme }}{{- end -}}
|
||||||
|
</pre>
|
||||||
|
</article>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue