mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
Correct use of landmarks
- No content outside landmarks - Remove bad use of <aside>
This commit is contained in:
parent
92f1d70128
commit
070ad7c14d
3 changed files with 3 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
<a href="#content" class="skip">Skip to content</a>
|
||||
<header id="banner" itemscope itemtype="https://schema.org/WPHeader">
|
||||
<a href="#content" class="skip">Skip to content</a>
|
||||
<nav aria-label="Main navigation">
|
||||
<ul class="unstyled-list">
|
||||
{{- $currentPage := . -}}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
{{ $preWithTabIndex := `<pre tabindex="0">` }}
|
||||
|
||||
<!--Move the Table of Contents heading *inside* the <nav> element-->
|
||||
{{ $tocHeadingOutside := `<h2 id="toc-hd">Table of Contents</h2><nav id="TableOfContents">` }}
|
||||
{{ $tocHeadingOutside := `<h2>Table of Contents</h2><nav id="TableOfContents">` }}
|
||||
{{ $tocHeadingInside := `<nav id=TableOfContents role="doc-toc"><h2 id="toc-hd">Table of Contents</h2>` }}
|
||||
|
||||
{{ .Content | replaceRE $references $referencesWithHeading | replaceRE $endnote $noEndnote | replaceRE $preWithoutTabIndex $preWithTabIndex | replaceRE $tocHeadingOutside $tocHeadingInside | safeHTML -}}
|
||||
|
|
|
@ -1,3 +1 @@
|
|||
<aside aria-labelledby="toc-hd">
|
||||
<h2 id="toc-hd">Table of Contents</h2>{{.Page.TableOfContents}}
|
||||
</aside>
|
||||
<h2>Table of Contents</h2>{{.Page.TableOfContents}}
|
||||
|
|
Loading…
Reference in a new issue