all repos — website @ 6be02cea11848175ead843d2ecad78dd0548a8a4

My website

Add skip links for accessibility
Alan Pearce alan@alanpearce.eu
Wed, 21 Jun 2023 13:21:25 +0200
commit

6be02cea11848175ead843d2ecad78dd0548a8a4

parent

f8acc923560a4b3fde660256ae7b7a6f9688b306

M templates/index.htmltemplates/index.html
@@ -5,36 +5,38 @@ {% block title_class %} p-name fn{% endblock %}
 
 {% block main %}
-  <div>
-    {{ section.content | safe }}
-  </div>
-  <section>
-    <h2>Latest Posts</h2>
-    <ul class="h-feed">
-      {%- set section = get_section(path="post/_index.md") %}
-      {%- for page in section.pages | slice(end=3) %}
-        <li class="h-entry">
-          <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format=config.extra.date_format) }}</time>
-          <a class="u-url p-name" href="{{ page.path | safe }}">{{ page.title }}</a>
-        </li>
-      {%- endfor %}
-    </ul>
-  </section>
-  <section>
-    <h2>Elsewhere on the Internet</h2>
-    <ul>
-      {%- for item in config.extra.contact_menu %}
-        <li>
-          {%- if item.url is starting_with("mailto:") %}
-            <a href="{{ item.url | safe }}" class="u-email email" rel="me">{{ item.name }}</a>
-          {%- else %}
-            <a href="{{ item.url | safe }}" class="u-url url" rel="me">{{ item.name }}</a>
-          {%- endif %}
-        </li>
-      {%- endfor %}
-    </ul>
-  </section>
-  <footer>
-    GPG Key: <a href="{{ config.extra.gpg_url | safe }}" rel="u-key key">{{ config.extra.gpg_fingerprint }}</a>
-  </footer>
+  <main id="content">
+    <div>
+      {{ section.content | safe }}
+    </div>
+    <section>
+      <h2>Latest Posts</h2>
+      <ul class="h-feed">
+        {%- set section = get_section(path="post/_index.md") %}
+        {%- for page in section.pages | slice(end=3) %}
+          <li class="h-entry">
+            <time class="dt-published" datetime="{{ page.date | date(format="%+") }}">{{ page.date | date(format=config.extra.date_format) }}</time>
+            <a class="u-url p-name" href="{{ page.path | safe }}">{{ page.title }}</a>
+          </li>
+        {%- endfor %}
+      </ul>
+    </section>
+    <section>
+      <h2>Elsewhere on the Internet</h2>
+      <ul>
+        {%- for item in config.extra.contact_menu %}
+          <li>
+            {%- if item.url is starting_with("mailto:") %}
+              <a href="{{ item.url | safe }}" class="u-email email" rel="me">{{ item.name }}</a>
+            {%- else %}
+              <a href="{{ item.url | safe }}" class="u-url url" rel="me">{{ item.name }}</a>
+            {%- endif %}
+          </li>
+        {%- endfor %}
+      </ul>
+    </section>
+    <footer>
+      GPG Key: <a href="{{ config.extra.gpg_url | safe }}" rel="u-key key">{{ config.extra.gpg_fingerprint }}</a>
+    </footer>
+  </main>
 {% endblock %}
M themes/bear/templates/header.htmlthemes/bear/templates/header.html
@@ -1,3 +1,4 @@+<a class="skip" href="#content">Skip to main content</a>
 <header>
   <h2>
     <a href="{{ config.base_url }}" class="title">
M themes/bear/templates/page.htmlthemes/bear/templates/page.html
@@ -15,7 +15,7 @@ </i>       </p>
     {%- endif %}
   {%- endif %}
-  <main>
+  <main id="content">
     {{ page.content | safe }}
   </main>
   <p>
M themes/bear/templates/section.htmlthemes/bear/templates/section.html
@@ -1,7 +1,7 @@ {% extends "base.html" %}
 
 {% block main %}
-  <main>
+  <main id="content">
     {%- if taxonomy.term %}
       <h3 style="margin-bottom:0">Filtering for "{{ section.title }}"</h3>
       <small>
M themes/bear/templates/style.htmlthemes/bear/templates/style.html
@@ -12,6 +12,15 @@ line-height: 1.5;     color: #444;
   }
 
+  .skip {
+    position: absolute;
+    top: -3em;
+    background: #fff;
+  }
+  .skip:focus {
+    top: 0;
+  }
+
   h1,
   h2,
   h3,
M themes/bear/templates/taxonomy_list.htmlthemes/bear/templates/taxonomy_list.html
@@ -1,7 +1,7 @@ {% extends "base.html" %}
 
 {% block main %}
-  <main>
+  <main id="content">
     <small>
       <div>
         {% set tags = get_taxonomy(kind="tags") %}
M themes/bear/templates/taxonomy_single.htmlthemes/bear/templates/taxonomy_single.html
@@ -6,7 +6,7 @@ <link rel="alternate" type={% if config.feed_filename == "atom.xml" %}"application/atom+xml"{% else %}"application/rss+xml"{% endif %} title="{{ config.title }}" href="{{ get_url(path=rss_path) | safe }}"> {%- endblock -%}
 
 {% block main %}
-  <main>
+  <main id="content">
     {%- if taxonomy.term %}
       <h3 style="margin-bottom:0">Filtering for "{{ term.name }}"</h3>
       <small>