legit/templates/file.html

26 lines
519 B
HTML
Raw Normal View History

2022-12-11 08:48:39 +00:00
{{ define "file" }}
<html>
{{ template "head" . }}
2022-12-18 05:44:38 +00:00
<title>{{.name }} &mdash; {{ .path }}</title>
2022-12-11 08:48:39 +00:00
2022-12-18 05:12:18 +00:00
{{ template "repoheader" . }}
2022-12-11 08:48:39 +00:00
<body>
{{ template "nav" . }}
<main>
2022-12-18 05:12:18 +00:00
<div class="file-wrapper">
<div class="line-numbers">
{{- range .linecount }}
<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>
{{- end -}}
</div>
<div>
<span></span>
<pre>
{{- .content -}}
</pre>
</div>
2022-12-11 08:48:39 +00:00
</main>
</body>
</html>
{{ end }}