2022-12-11 08:48:39 +00:00
|
|
|
{{ define "file" }}
|
|
|
|
<html>
|
|
|
|
{{ template "head" . }}
|
|
|
|
<body>
|
2023-02-04 16:34:21 +00:00
|
|
|
{{ template "repoheader" . }}
|
2022-12-11 08:48:39 +00:00
|
|
|
{{ template "nav" . }}
|
|
|
|
<main>
|
2023-01-31 23:27:22 +00:00
|
|
|
<p>{{ .path }} (<a href="{{ .raw }}">raw</a>)</p>
|
2023-01-31 21:02:43 +00:00
|
|
|
<table class="file-wrapper">
|
|
|
|
<tbody><tr>
|
|
|
|
<td class="line-numbers">
|
|
|
|
<pre>
|
|
|
|
{{- range .linecount }}
|
2022-12-18 05:12:18 +00:00
|
|
|
<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>
|
2023-01-31 21:02:43 +00:00
|
|
|
{{- end -}}
|
|
|
|
</pre>
|
|
|
|
</td>
|
|
|
|
<td class="file-content">
|
2022-12-18 05:12:18 +00:00
|
|
|
<pre>
|
|
|
|
{{- .content -}}
|
|
|
|
</pre>
|
2023-01-31 21:02:43 +00:00
|
|
|
</td>
|
|
|
|
</tbody></tr>
|
|
|
|
</table>
|
2022-12-11 08:48:39 +00:00
|
|
|
</main>
|
2023-02-04 16:34:21 +00:00
|
|
|
{{ template "footer" .meta }}
|
2022-12-11 08:48:39 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|