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,7 +1,8 @@
|
|||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<div class="archive">
|
<header class="page-header">
|
||||||
<header class="page-header"><h1>{{ .Title }}</h1></header>
|
<h1>{{ .Title }}</h1>
|
||||||
|
</header>
|
||||||
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
{{ $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
|
||||||
{{ range $pages.GroupByPublishDate "2006" }}
|
{{ range $pages.GroupByPublishDate "2006" }}
|
||||||
{{ if ne .Key "0001" }}
|
{{ if ne .Key "0001" }}
|
||||||
@ -34,5 +35,5 @@
|
|||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
|
||||||
{{ end }}{{/* end main */}}
|
{{ end }}{{/* end main */}}
|
Loading…
Reference in New Issue
Block a user