mirror of
https://github.com/Wonderfall/hugo-WonderMod.git
synced 2024-11-22 10:31:39 +01:00
archives : improvements
This commit is contained in:
parent
e91b15284a
commit
81b0b0c809
@ -1,13 +1,8 @@
|
|||||||
/* Archive
|
/* Archive
|
||||||
-------------------------------------------------- */
|
-------------------------------------------------- */
|
||||||
.archive {
|
|
||||||
width: 100%;
|
|
||||||
text-align: left;
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.archive-posts {
|
.archive-posts {
|
||||||
width: 100%
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-year {
|
.archive-year {
|
||||||
@ -15,17 +10,17 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.archive-year-header:not(:last-of-type) {
|
.archive-year-header:not(:last-of-type) {
|
||||||
border-bottom: 1px solid var(--border)
|
border-bottom: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-year:not(:last-of-type) {
|
.archive-year:not(:last-of-type) {
|
||||||
border-bottom: 1px solid var(--border)
|
border-bottom: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-month {
|
.archive-month {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
padding: 10px 0
|
padding: 10px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-month-header {
|
.archive-month-header {
|
||||||
@ -34,7 +29,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.archive-month:not(:last-of-type) {
|
.archive-month:not(:last-of-type) {
|
||||||
border-bottom: 1px solid var(--border)
|
border-bottom: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-entry {
|
.archive-entry {
|
||||||
@ -44,7 +39,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.archive-entry-title {
|
.archive-entry-title {
|
||||||
margin: 5px 0
|
margin: 5px 0;
|
||||||
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-meta {
|
.archive-meta {
|
||||||
@ -54,10 +50,10 @@
|
|||||||
|
|
||||||
@media (max-width: 800px) {
|
@media (max-width: 800px) {
|
||||||
.archive-month {
|
.archive-month {
|
||||||
flex-direction: column
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.archive-year {
|
.archive-year {
|
||||||
margin-top: 20px
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,38 +1,39 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<div class="archive">
|
<header class="page-header">
|
||||||
<header class="page-header"><h1>{{ .Title }}</h1></header>
|
<h1>{{ .Title }}</h1>
|
||||||
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
</header>
|
||||||
{{ range $pages.GroupByPublishDate "2006" }}
|
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
||||||
{{ if ne .Key "0001" }}
|
{{ range $pages.GroupByPublishDate "2006" }}
|
||||||
<div class="archive-year">
|
{{ if ne .Key "0001" }}
|
||||||
<h2 class="archive-year-header">{{ replace .Key "0001" "" }}</h2>
|
<div class="archive-year">
|
||||||
{{ range .Pages.GroupByDate "January" }}
|
<h2 class="archive-year-header">{{ replace .Key "0001" "" }}</h2>
|
||||||
<div class="archive-month">
|
{{ range .Pages.GroupByDate "January" }}
|
||||||
<h3 class="archive-month-header">{{ .Key }}</h3>
|
<div class="archive-month">
|
||||||
<div class="archive-posts">
|
<h3 class="archive-month-header">{{ .Key }}</h3>
|
||||||
{{ range .Pages }}
|
<div class="archive-posts">
|
||||||
{{ if eq .Kind "page" }}
|
{{ range .Pages }}
|
||||||
<div class="archive-entry">
|
{{ if eq .Kind "page" }}
|
||||||
<h3 class="archive-entry-title">
|
<div class="archive-entry">
|
||||||
{{ .Title | markdownify }}
|
<h3 class="archive-entry-title">
|
||||||
</h3>
|
{{ .Title | markdownify }}
|
||||||
<div class="archive-meta">
|
</h3>
|
||||||
{{- if or .Params.author .Site.Params.author }}{{- .Params.author | default .Site.Params.author }} ·
|
<div class="archive-meta">
|
||||||
{{ end }}
|
{{- if or .Params.author .Site.Params.author }}{{- .Params.author | default .Site.Params.author }} ·
|
||||||
{{ if $.Site.Params.ShowReadingTime }}{{ .ReadingTime }}{{ i18n "read_time" | default "min read" }}
|
{{ end }}
|
||||||
· {{ end }}
|
{{ if $.Site.Params.ShowReadingTime }}{{ .ReadingTime }}{{ i18n "read_time" | default "min read" }}
|
||||||
{{- .Date.Format "January 2, 2006" -}}
|
· {{ end }}
|
||||||
</div>
|
{{- .Date.Format "January 2, 2006" -}}
|
||||||
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
<a class="entry-link" aria-label="post link to {{ .Title | plainify }}" href="{{ .Permalink }}"></a>
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
|
||||||
</div>
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
{{ end }}{{/* end main */}}
|
{{ end }}{{/* end main */}}
|
Loading…
Reference in New Issue
Block a user