Downgrade page_summary headings from <h2> to <h3>
When page_summaries are rendered in sections by year, the year heading is an <h2> so these need to be <h3> for correct heading hierarchy.
This commit is contained in:
parent
59ff58e159
commit
9995c8d10d
2 changed files with 5 additions and 4 deletions
|
@ -20,14 +20,15 @@
|
||||||
|
|
||||||
.page-summary__heading {
|
.page-summary__heading {
|
||||||
margin-block: 0 var(--space-xs);
|
margin-block: 0 var(--space-xs);
|
||||||
|
|
||||||
h2 {
|
|
||||||
line-height: 1;
|
|
||||||
font-size: var(--text-l);
|
font-size: var(--text-l);
|
||||||
|
|
||||||
|
h2, h3 {
|
||||||
|
line-height: 1;
|
||||||
margin-block: 0;
|
margin-block: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
font-size: var(--text-m);
|
||||||
margin-block-start: var(--space-xs);
|
margin-block-start: var(--space-xs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
<article class="page-summary">
|
<article class="page-summary">
|
||||||
{{ if and (.Params.rendersSummary | default true) (gt (len .Description) 0) -}}
|
{{ if and (.Params.rendersSummary | default true) (gt (len .Description) 0) -}}
|
||||||
<hgroup class="page-summary__heading">
|
<hgroup class="page-summary__heading">
|
||||||
<h2><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h2>
|
<h3><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h3>
|
||||||
{{ with .Description }}
|
{{ with .Description }}
|
||||||
<p>{{ . | markdownify }}</p>
|
<p>{{ . | markdownify }}</p>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</hgroup>
|
</hgroup>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<h2 class="page-summary__heading"><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h2>
|
<h3 class="page-summary__heading"><a href="{{ .Permalink }}">{{ .LinkTitle | markdownify }}</a></h3>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{- if .Date -}}
|
{{- if .Date -}}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue