{{ define "title" }}{{ .Path }} at {{ .Ref }} · {{ .RepoInfo.FullName }}{{ end }} {{ define "repoContent" }} {{ $lines := split .Contents }} {{ $tot_lines := len $lines }} {{ $tot_chars := len (printf "%d" $tot_lines) }} {{ $code_number_style := "text-gray-400 left-0 bg-white text-right mr-6 select-none" }} {{ $linkstyle := "no-underline hover:underline" }}
{{ .Lines }} lines {{ byteFmt .SizeHint }}
{{ if .IsBinary }}

This is a binary file and will not be displayed.

{{ else }}
{{ range $idx, $line := $lines }} {{ $linenr := add $idx 1 }}
{{ $linenr }}
{{ $line | escapeHtml }}
{{ end }}
{{ end }} {{ end }}