gitssg/templates/file.html.tmpl
2024-06-30 00:26:09 +02:00

53 lines
1.9 KiB
Cheetah

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{.filename}} - {{.repoInfo.Name}} - {{.repoInfo.Description}}</title>
<link rel="icon" type="image/png" href="../favicon.png" />
<link rel="alternate" type="application/atom+xml" title="bag Atom Feed" href="../atom.xml" />
<link rel="alternate" type="application/atom+xml" title="bag Atom Feed (tags)" href="../tags.xml" />
<link rel="stylesheet" type="text/css" href="../style.css" />
</head>
<body>
<table>
<tr>
<td><a href="../../"><img src="../logo.png" alt="" width="32" height="32" /></a></td>
<td><h1>{{.repoInfo.Name}}</h1><span class="desc">{{.repoInfo.Description}}</span></td>
</tr>
<tr class="url">
<td></td>
<td>
{{if ne .repoInfo.Url ""}}
git clone <a href="{{.repoInfo.Url}}">{{.repoInfo.Url}}</a>
{{end}}
</td>
</tr>
<tr>
<td></td>
<td>
<a href="../log.html">Log</a>
| <a href="../files.html">Files</a>
| <a href="../refs.html">Refs</a>
{{if .repoInfo.HasReadme}}
| <a href="../file/README.html">README</a>
{{end}}
{{if .repoInfo.HasLicense}}
| <a href="../file/LICENSE.html">LICENSE</a></td>
{{end}}
{{if .repoInfo.HasContributing}}
| <a href="../file/CONTRIBUTING.html">CONTRIBUTING</a></td>
{{end}}
</tr>
</table>
<hr/>
<div id="content">
<p> {{.filename}} ({{.filesize}}B)</p><hr/><pre id="blob">
{{- range $i, $line := .filelines}}
{{- $index := inc $i}}
<a href="#l{{$index}}" class="line" id="l{{$index}}">{{printf "%7d" $index}}</a> {{$line}}
{{- end}}
</pre>
</div>
</body>
</html>