legit/templates/repo-header.html

12 lines
233 B
HTML
Raw Normal View History

2022-12-18 05:12:18 +00:00
{{ define "repoheader" }}
<header>
<h2>
2024-02-20 00:24:38 +00:00
<a href="/">all repos</a>
&mdash; {{ .repo }}
2022-12-18 05:12:18 +00:00
{{ if .ref }}
<span class="ref">@ {{ .ref }}</span>
{{ end }}
</h2>
<h3 class="desc">{{ .desc }}</h3>
</header>
2024-02-20 00:24:38 +00:00
{{ end }}