mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-12-22 12:13:19 -06:00
Improve list pages + support "series"
- Use a <ul>: better accessibility - Background for individual pages in the list, giving a better feeling of separation - Support "series" taxonomy (displayed oldest to newest)
This commit is contained in:
parent
57be090b6a
commit
b03fc6c7b1
@ -4,8 +4,22 @@
|
|||||||
|
|
||||||
|
|
||||||
/* Post layout (in list pages) */
|
/* Post layout (in list pages) */
|
||||||
.post {
|
.page-list ul {
|
||||||
margin-bottom: 40px;
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-list li {
|
||||||
|
padding-top: 8px;
|
||||||
|
padding-left: 24px;
|
||||||
|
padding-right: 24px;
|
||||||
|
padding-bottom: 24px;
|
||||||
|
border-radius: 12px;
|
||||||
|
background-color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
.page-list li+li {
|
||||||
|
margin: 40px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.post-title {
|
.post-title {
|
||||||
@ -26,7 +40,7 @@
|
|||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tags {
|
.tags, .series {
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,7 +62,7 @@
|
|||||||
.section {
|
.section {
|
||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
background-color: #222;
|
background-color: #222;
|
||||||
border-radius: 5px;
|
border-radius: 12px;
|
||||||
padding: 1px 25px;
|
padding: 1px 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -11,6 +11,7 @@ params:
|
|||||||
taxonomies:
|
taxonomies:
|
||||||
tag: tags
|
tag: tags
|
||||||
author: authors
|
author: authors
|
||||||
|
series: series
|
||||||
|
|
||||||
privacy:
|
privacy:
|
||||||
googleAnalytics:
|
googleAnalytics:
|
||||||
|
@ -10,8 +10,9 @@
|
|||||||
</span>
|
</span>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
|
{{ with .Sections }}
|
||||||
<div class="sections">
|
<div class="sections">
|
||||||
{{ range .Sections }}
|
{{ range . }}
|
||||||
|
|
||||||
<a class="section-anchor" href="{{ .Permalink }}">
|
<a class="section-anchor" href="{{ .Permalink }}">
|
||||||
<div class="section">
|
<div class="section">
|
||||||
@ -34,13 +35,18 @@
|
|||||||
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="posts">
|
|
||||||
{{ range .Paginator.Pages }}
|
|
||||||
{{ .Render "summary" }}
|
|
||||||
{{ else }}
|
|
||||||
{{ i18n "no_posts" }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
<div class="page-list">
|
||||||
|
<ul>
|
||||||
|
{{ range .Paginator.Pages }}
|
||||||
|
<li>{{ .Render "summary" }}</li>
|
||||||
|
{{ else }}
|
||||||
|
<div>
|
||||||
|
{{ i18n "no_posts" }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ if gt .Paginator.TotalPages 1 }}
|
{{ if gt .Paginator.TotalPages 1 }}
|
||||||
|
@ -74,6 +74,17 @@
|
|||||||
</span>
|
</span>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
|
{{ with .Params.series }}
|
||||||
|
<div class="series">
|
||||||
|
{{ range ($.GetTerms "series") }}
|
||||||
|
<span class="post-meta-item">
|
||||||
|
{{ partial "icon.html" "files" }}
|
||||||
|
<a href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
||||||
|
</span>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<div class="tags">
|
<div class="tags">
|
||||||
{{ range (.GetTerms "tags") }}
|
{{ range (.GetTerms "tags") }}
|
||||||
<span class="post-meta-item">
|
<span class="post-meta-item">
|
||||||
|
@ -5,6 +5,8 @@
|
|||||||
{{ partial "icon.html" "tag" }}
|
{{ partial "icon.html" "tag" }}
|
||||||
{{ else if eq .Data.Singular "author" }}
|
{{ else if eq .Data.Singular "author" }}
|
||||||
{{ partial "icon.html" "user-circle" }}
|
{{ partial "icon.html" "user-circle" }}
|
||||||
|
{{ else if eq .Data.Singular "series" }}
|
||||||
|
{{ partial "icon.html" "files" }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ partial "icon.html" "filter" }}
|
{{ partial "icon.html" "filter" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
@ -30,13 +32,24 @@
|
|||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ range .Paginator.Pages }}
|
|
||||||
{{ .Render "summary" }}
|
|
||||||
|
{{ $items := .Paginator.Pages }}
|
||||||
|
{{ if eq .Data.Singular "series" }}
|
||||||
|
{{ $items = .Paginator.Pages.Reverse }}
|
||||||
|
{{ end }}
|
||||||
|
<div class="page-list">
|
||||||
|
<ul>
|
||||||
|
{{ range $items }}
|
||||||
|
<li>{{ .Render "summary" }}</li>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<div>
|
<div>
|
||||||
{{ i18n "no_posts" }}
|
{{ i18n "no_posts" }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
{{ if gt .Paginator.TotalPages 1 }}
|
{{ if gt .Paginator.TotalPages 1 }}
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
|
Loading…
Reference in New Issue
Block a user