Skip to content

Commit

Permalink
Removing tabindex="-1" from <main>
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Morris committed Apr 24, 2023
1 parent 4850119 commit 63a0124
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _includes/layouts/doc.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
---
{% include "header.html" %}
<main id="content" tabindex="-1">
<main id="content"">
<div class="doc">
<h1>{{ title }}</h1>
{{ content }}
Expand Down
2 changes: 1 addition & 1 deletion _includes/layouts/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ <h1>{{ title }}</h1>
{%- endfor -%}
</ul>
</nav>
<div id="content" tabindex="-1">
<div id="content">
{{ content }}
</div>
</main>
Expand Down
2 changes: 1 addition & 1 deletion _includes/layouts/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
{% include "header.html" %}
{% include "page-header.html" %}
<main class="post" id="content" tabindex="-1">
<main class="post" id="content">
<h1>{{ title }}</h1>
{{ content }}
</main>
Expand Down
2 changes: 1 addition & 1 deletion _includes/layouts/tag.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---
{% include "header.html" %}
{% include "page-header.html" %}
<main class="post" id="content" tabindex="-1">
<main class="post" id="content">
{{ content }}
</main>
{% include "page-footer.html" %}
Expand Down

0 comments on commit 63a0124

Please sign in to comment.