23 lines
674 B
HTML
23 lines
674 B
HTML
{{ define "main" }}
|
|
<div class="content">
|
|
<h1>{{ .Title }}</h1>
|
|
{{ .Content }}
|
|
</div>
|
|
<div class="page-actions">
|
|
<a class="page-link" href="{{ printf "/%s/" .Section | relLangURL }}">
|
|
{{ .Section }} <span class="material-symbols-outlined">arrow_back</span>
|
|
</a>
|
|
<hr class="rule">
|
|
</div>
|
|
<div class="footer-note page-footer">
|
|
{{ with .GitInfo }}
|
|
{{ $firstCommit := . }}
|
|
{{ with .Ancestors.Reverse }}
|
|
{{ $firstCommit = index . 0 }}
|
|
{{ end }}
|
|
<div class="page-footer-date">{{ $firstCommit.AuthorDate.Format "2 Jan, 06" }}</div>
|
|
{{ end }}
|
|
<div>{{ site.Params.homeFooter }}</div>
|
|
</div>
|
|
{{ end }}
|