Skip to content

Commit

Permalink
Make sure only the title closest to content is an h1, (#585)
Browse files Browse the repository at this point in the history
not the hero's.

Fixes #584
  • Loading branch information
regisphilibert committed Oct 31, 2022
1 parent b433a7a commit b393088
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions layouts/partials/page-header.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
{{ partial "site-navigation.html" . }}
<div class="tc-l pv6 ph3 ph4-ns">
{{ if not .Params.omit_header_text }}
<h1 class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</h1>
<div class="f2 f1-l fw2 white-90 mb0 lh-title">{{ .Title | default .Site.Title }}</div>
{{ with .Params.description }}
<h2 class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
<div class="fw1 f5 f3-l white-80 measure-wide-l center lh-copy mt3 mb4">
{{ . }}
</h2>
</div>
{{ end }}
{{ end }}
</div>
Expand Down

0 comments on commit b393088

Please sign in to comment.