+ New

fierj

Public

Tiny personal git forge

← fierj / templates / log.html
{{template "head" .}}
{{define "title"}}commits - {{.Repo}} - fierj{{end}}
{{template "repo-header" .}}
{{template "repo-tabs" .}}
<div class="commit-list">
{{range .CommitList}}
<div class="commit-list-item">
    <span class="msg"><a href="/{{$.Repo}}/commit/{{.Hash}}">{{.Message}}</a></span>
    <span class="meta">{{.Author}}</span>
    <span class="hash"><a href="/{{$.Repo}}/commit/{{.Hash}}">{{shortHash .Hash}}</a></span>
    <span class="meta">{{.Date}}</span>
</div>
{{end}}
</div>
{{template "foot" .}}