mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-17 23:05:41 +00:00
21 lines
674 B
HTML
21 lines
674 B
HTML
{{ partial "head.html" . }}
|
|
{{ partial "header.html" . }}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="sixteen columns">
|
|
<h1>{{.Title}}</h1>
|
|
<ul class="li-article-list">
|
|
{{ range .Pages }}
|
|
<li>
|
|
<time class="li-article-date">{{ .Date.Format "January, 2, 2006" }}</time>
|
|
<h4><a href="{{ .Permalink }}">{{ .Title }}</a></h4>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "tail.html" . }}
|