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
Added Additional Languages 🇫🇷 🇹🇼
Alexander Bilz
02.35.2020
5dbd94e7a0edf9d0bb104e2c647de281eadade90
[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 }}