aboutsummaryrefslogblamecommitdiff
path: root/templates/file.html
blob: 758f68a7429ea68a096839e833267ae175bffde1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                   
               
      






                                                                                                 
                                                   


                              

         
{{ define "file" }}
<!DOCTYPE html>
<html>
	{{ template "head" . }}
	{{ template "repoheader" . }}
	<body>
		{{ 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 }}