Skip to content

Commit

Permalink
Use heading level 3 for contributor/signature counts (#356)
Browse files Browse the repository at this point in the history
This follows the best practice of not skipping from heading levels.
  • Loading branch information
jmp authored Dec 4, 2023
1 parent 9474ae3 commit 2ce9d05
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion layouts/shortcodes/contributors.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
{{ end }}
{{ $sortedNames = sort $sortedNames ".lastName" }}
<div>
<h4>({{ len $sortedNames }})</h4>
<h3>({{ len $sortedNames }})</h3>
{{ range $index, $element := $sortedNames }}
{{ if gt $index 0 }}&bull;{{ end }}
{{ if .contact }}
Expand Down
2 changes: 1 addition & 1 deletion layouts/shortcodes/signatures.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{ $names := .Site.Data.names.signatures.list }}
<div>
<h4>({{ len $names }})</h4>
<h3>({{ len $names }})</h3>
{{ range $index, $element := $names }}
{{ if gt $index 0 }}&bull;{{ end }}
{{ if .contact }}
Expand Down

0 comments on commit 2ce9d05

Please sign in to comment.