summaryrefslogblamecommitdiffstats
path: root/templates/file.html
blob: 82a338490b0ce5cebe460ffd1f4a5b1b869a8db0 (plain) (tree)
1
2
3
4
5
6
7
8
9


                       
                                               
 
                               


                          
                        




                                   
                                             



                                 


                            


                     



           
{{ define "file" }}
<html>
{{ template "head" . }}
  <title>{{.name }} &mdash; {{ .path }}</title>

  {{ template "repoheader" . }}
  <body>
    {{ template "nav" . }}
    <main>
      <p>{{ .path }}</p>
      <table class="file-wrapper">
        <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>
    </main>
  </body>
</html>
{{ end }}