added cactus theme files
This commit is contained in:
30
hugo-content/themes/cactus/layouts/_default/list.html
Normal file
30
hugo-content/themes/cactus/layouts/_default/list.html
Normal file
@@ -0,0 +1,30 @@
|
||||
{{ define "main"}}
|
||||
<div id="archive">
|
||||
<ul class="post-list">
|
||||
|
||||
{{ $pages := .Paginator.Pages }}
|
||||
{{ if .Site.Params.showAllPostsArchive }}
|
||||
{{ $pages = .Pages }}
|
||||
{{ end }}
|
||||
|
||||
{{ range (sort $pages "Date" "desc") }}
|
||||
{{ $pageYear := (.Date.Format "2006") }}
|
||||
{{ if (ne $pageYear ($.Scratch.Get "year")) }}
|
||||
{{ $.Scratch.Set "year" $pageYear }}
|
||||
<h2>{{ $pageYear }}</h2>
|
||||
{{ end }}
|
||||
<li class="post-item">
|
||||
<div class="meta">
|
||||
<time datetime="{{ time .Date }}" itemprop="datePublished">{{ .Date.Format (.Site.Params.dateFormat | default "2006-01-02") }}</time>
|
||||
</div>
|
||||
<span>
|
||||
<a class="" href="{{ .Permalink }}">{{ if .Title }} {{ .Title }} {{ else }} Untitled {{ end }}</a>
|
||||
</span>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ if eq .Site.Params.showAllPostsArchive false }}
|
||||
{{ partial "pagination.html" . }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
Reference in New Issue
Block a user