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



                                                                                                 
                                                           


                              

         
{{ 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 }}