diff options
Diffstat (limited to 'templates/file.html')
-rw-r--r-- | templates/file.html | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/templates/file.html b/templates/file.html index a40f071..758f68a 100644 --- a/templates/file.html +++ b/templates/file.html @@ -8,16 +8,7 @@ <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> + <pre>{{- .content -}}</pre> </div> </main> </body> |