dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_hugo-coder
mirror of
https://github.com/luizdepra/hugo-coder.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Fix assets permalinks
Luiz de Prá
15.05.2018
a094f8fe7bfefbf150f20f068243d210de14d6c7
[external-software/github_gohugo_theme_hugo-coder.git]
/
layouts
/
partials
/
list.html
1
2
3
4
5
6
7
8
9
10
11
<section class="container list">
<h1 class="title">{{ .Title }}</h1>
<ul>
{{ range .Paginator.Pages }}
<li>
<span>{{ .Date.Format (.Site.Params.dateFormat | default "January 2, 2006" ) }}</span><a href="{{ .URL }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ partial "pagination.html" . }}
</section>