Skip to content

Commit

Permalink
Add id attribute to archives and authors pages
Browse files Browse the repository at this point in the history
This allows linking to these pages below the fold.
  • Loading branch information
haplo committed Oct 19, 2019
1 parent 6caa500 commit 1327164
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/archives.html
Expand Up @@ -4,7 +4,7 @@
{% block content %}
<article class="single">
<header>
<h1>{{ _('Archives') }}</h1>
<h1 id="archives">{{ _('Archives') }}</h1>
</header>
<div>
<dl>
Expand Down
2 changes: 1 addition & 1 deletion templates/authors.html
Expand Up @@ -5,7 +5,7 @@
{% block content %}
<article class="single">
<header>
<h1>{{ _('Authors') }}</h1>
<h1 id="authors">{{ _('Authors') }}</h1>
</header>
<div>
<ul class="list">
Expand Down
2 changes: 1 addition & 1 deletion templates/period_archives.html
Expand Up @@ -4,7 +4,7 @@
{% block content %}
<article class="single">
<header>
<h1>{{ _('Archives') }}</h1>
<h1 id="archives">{{ _('Archives') }}</h1>
</header>
<div>
<dl>
Expand Down

0 comments on commit 1327164

Please sign in to comment.