1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{{ define "file" }} <!DOCTYPE html> <html> {{ template "head" . }} <body> {{ template "repoheader" . }} {{ template "nav" . }} <main> <p>{{ .path }} (<a style="color: gray" href="?raw=true">view raw</a>)</p> <div class="file-wrapper"> <pre>{{- .content -}}</pre> </div> </main> </body> </html> {{ end }}