aboutsummaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorCaio Lente <7017340+clente@users.noreply.github.com>2023-09-29 19:52:52 -0300
committerGitHub <noreply@github.com>2023-09-29 19:52:52 -0300
commitd14c9c0dec1ee18be9fdf5f21494b944f19de3b8 (patch)
tree78944dcfd2a06312ac4427c561650e3affb7165d /layouts
parent300cf058e1adb42138cfb78010189bc730ce1847 (diff)
parent6f2e7d0c6fe3ef16fa414d75d9647398df857c39 (diff)
downloadhugo-bearcub-d14c9c0dec1ee18be9fdf5f21494b944f19de3b8.tar.gz
hugo-bearcub-d14c9c0dec1ee18be9fdf5f21494b944f19de3b8.tar.bz2
Merge branch 'main' into language-params-fix
Diffstat (limited to 'layouts')
-rw-r--r--layouts/_default/baseof.html2
-rw-r--r--layouts/partials/header.html2
2 files changed, 3 insertions, 1 deletions
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 7aa0605..06d71c3 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -36,7 +36,7 @@
<header>
{{- partial "header.html" . -}}
</header>
- <main>
+ <main id="maincontent">
{{- block "main" . }}{{- end }}
</main>
<footer>
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index fccb41f..1db41b2 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -1,2 +1,4 @@
+<a class="skiplink" href="#maincontent">Skip to Main Content</a>
+
<a href="{{ relURL .Site.Home.Permalink }}" class="title"><h1>{{ .Site.Title }}</h1></a>
<nav>{{- partial "nav.html" . -}}</nav>