Remove the <ul> and <li> from the blog list

This commit is contained in:
Eryn Wells 2023-09-26 08:35:21 -07:00
parent 6f132cc04e
commit b7070ccfd5
3 changed files with 33 additions and 57 deletions

View file

@ -1,8 +1,4 @@
@layer section { @layer section {
:root {
--body-item-spacing: 1rem;
}
.blog.list { .blog.list {
gap: 8rem 0; gap: 8rem 0;
} }
@ -11,63 +7,52 @@
grid-column: content-start / content-end; grid-column: content-start / content-end;
} }
.blog.list > ul, .blog.list > .post {
.blog.list > ul > li {
grid-column: wide-content-start / wide-content-end; grid-column: wide-content-start / wide-content-end;
} }
@supports (grid-template-columns: subgrid) { @supports (grid-template-columns: subgrid) {
.blog.list > ul, .blog.list > .post {
.blog.list > ul > li, --body-item-spacing: 2rem;
.blog.list > ul > li > article {
display: grid; display: grid;
grid-template-columns: subgrid; grid-template-columns: subgrid;
gap: var(--body-item-spacing) 0; gap: var(--body-item-spacing) 0;
} }
} }
/* .post header {
@media (max-width: 415px) { grid-column: wide-content-start / content-end;
.blog.list > ul,
.blog.list > ul > li {
display: block;
}
}
*/
.blog.list > ul {
gap: 8rem 0;
} }
.blog.list > ul > li { @supports (grid-template-columns: subgrid) {
gap: 1rem 0; .post header {
margin: 0; display: grid;
grid-template-columns: subgrid;
}
} }
li > time { .post time {
font-variant-numeric: tabular-nums; font-variant-numeric: tabular-nums;
grid-column: wide-content-start; grid-column: wide-content-start;
justify-self: end; justify-self: end;
} }
@media (max-width: 960px) { @media (max-width: 960px) {
li > time { .post time {
grid-column: content-start / content-end; grid-column: content-start / content-end;
justify-self: start; justify-self: start;
line-height: var(--line-height); line-height: var(--line-height);
} }
} }
li > .title { article.post {
grid-column: content-start / content-end;
}
li > article {
grid-column: gutter-start / gutter-end; grid-column: gutter-start / gutter-end;
} }
li > p, .post p,
li > .tags { .post .tags,
.post .title {
grid-column: content-start / content-end; grid-column: content-start / content-end;
} }
@ -75,18 +60,6 @@
margin-block-end: 0; margin-block-end: 0;
} }
@media (max-width: 414px) {
li > article > figure,
li > article > figure img {
border-radius: 0;
}
}
.blog.list > ul,
.blog.list > ul > li {
margin-inline-start: 0;
}
.title { .title {
font-size: var(--h5-size); font-size: var(--h5-size);
} }

View file

@ -1,14 +1,19 @@
<li class="post"> <article class="post">
<header>
<time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "Jan 2, 2006" }}</time> <time class="nobreak" datetime="{{ .Date | time.Format "2006-01-02" }}">{{ .Date | time.Format "Jan 2, 2006" }}</time>
<h2 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2> <h1 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
</header>
{{ if .Description }} {{ if .Description }}
<p>{{ .Description }}</p> <p>{{ .Description }}</p>
{{ else if lt .WordCount 110 }} {{ else if lt .WordCount 110 }}
<article>{{ .Content }}</article> {{ .Content }}
{{ else }} {{ else }}
{{ warnf "Post \"%s\" doesn't have a description or content suitable for the blog list" .Title }} {{ warnf "Post \"%s\" doesn't have a description or content suitable for the blog list" .Title }}
<p>{{ .WordCount }} words</p> <p>{{ .WordCount }} words</p>
{{ end }} {{ end }}
{{ partial "footer_tags.html" . }} {{ partial "footer_tags.html" . }}
{{ partial "development/draft_tag.html" . }} {{ partial "development/draft_tag.html" . }}
</li> </article>

View file

@ -4,14 +4,12 @@
{{ define "main" }} {{ define "main" }}
{{- range .Pages.ByDate.GroupByDate "2006" -}} {{- range .Pages.ByDate.GroupByDate "2006" -}}
<h1 class="date">{{ .Key | title }}</h1> <h1 class="date"><a id="{{ .Key }}">{{ .Key | title }}</a></h1>
<ul>
{{- range .Pages -}} {{- range .Pages -}}
{{- if or (not .Draft) (not hugo.IsProduction) -}} {{- if or (not .Draft) (not hugo.IsProduction) -}}
{{- .Render "li_grid_with_date" -}} {{- .Render "li_grid_with_date" -}}
{{- end -}} {{- end -}}
{{- end -}} {{- end -}}
</ul>
{{- end -}} {{- end -}}
{{ end }} {{ end }}