all repos

mugit @ b6e1830

🐮 git server that your cow will love

mugit/web/templates/repo_file.html (view raw)

Oleksandr Smirnov Oleksandr Smirnov
olexsmir@gmail.com
web: shoutout to my boy Opus for improving my css, 4 months ago
1
{{ define "repo_file" }}
2
<html>
3
  <head>
4
  {{ template "head" . }}
5
  </head>
6
  {{ template "repo_header" . }}
7
  <body>
8
    <main>
9
      <p>{{ .path }} (<a style="color: gray" href="?raw=true">view raw</a>)</p>
10
      <div class="file-wrapper">
11
      <table>
12
        <tbody><tr>
13
            <td class="line-numbers">
14
              <pre>{{- range .linecount }}
15
<a id="L{{ . }}" href="#L{{ . }}">{{ . }}</a>
16
{{- end -}}</pre>
17
            </td>
18
            <td class="file-content">
19
              <pre>{{- .content -}}</pre>
20
            </td>
21
        </tbody></tr>
22
      </table>
23
      </div>
24
    </main>
25
  </body>
26
</html>
27
{{ end }}