gitlin/views/file.html

17 行
490 B
HTML
Raw 通常表示 履歴

{{ template "header" .}}
<main>
{{ if .file }}
<div class="downloadParent">
<a href="/{{.fullname}}" class="downloadButton">Back to {{.fullname}}</a>
</div>
<div class="userReadme">
<h3>{{.name}}</h3>
<pre class="filePre">{{ .file}}</pre>
</div>
<div class="downloadParent">
<a href="/raw/{{.fullname}}/{{.branch}}/{{.name}}" class="downloadButton">Download</a>
</div>
{{end}}
</main>