archives : improvements

This commit is contained in:
Aditya Telange 2020-09-20 17:00:45 +05:30
parent e91b15284a
commit 81b0b0c809
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77
2 changed files with 40 additions and 43 deletions

View File

@ -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;
} }
} }

View File

@ -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 */}}