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

View file

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