dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_anatole
mirror of
https://github.com/lxndrblz/anatole.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Please the sonarcube overlord
Gerben Geijteman
14.03.2020
b22518955085e981168fa6a8719e5b354ec0a767
[external-software/github_gohugo_theme_anatole.git]
/
layouts
/
_default
/
list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ define "main" }}
<div class="archive animated fadeInDown">
<ul class="list-with-title">
{{ range .Data.Pages.GroupByDate "2006" }}
<div class="listing-title">{{ .Key }}</div>
{{ range .Pages }}
<ul class="listing">
<div class="listing-item">
<div class="listing-post"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a>
<div class="post-time"><span class="date">{{.Date.Format "Jan 2" }}</span></div>
</div>
</div>
</ul>
{{ end }}
{{ end }}
</ul>
</div>
{{ end }}