aboutsummaryrefslogblamecommitdiff
path: root/templates/file.html
blob: a40f071da0fd6900a12153339940a357f11ca8e9 (plain) (tree)
1
2
3
                   
               
      



















                                                                                                                                                  

         
{{ 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">
			<table >
				<tbody><tr>
						<td class="line-numbers">
							<pre>{{- range .linecount }}<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>{{- end -}}</pre>
						</td>
						<td class="file-content">
							<pre>{{- .content -}}</pre>
						</td>
				</tbody></tr>
			</table>
			</div>
		</main>
	</body>
</html>
{{ end }}