Add id attribute to categories and tags pages
This allows linking to these pages below the fold.
This commit is contained in:
parent
4180f7e9c1
commit
c11530bbe2
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
|||
{% block content %}
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1>{{ _('Categories') }}</h1>
|
||||
<h1 id="categories">{{ _('Categories') }}</h1>
|
||||
</header>
|
||||
<div>
|
||||
<ul class="list">
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
{% block content %}
|
||||
<article class="single">
|
||||
<header>
|
||||
<h1>{{ _('Tags') }}</h1>
|
||||
<h1 id="tags">{{ _('Tags') }}</h1>
|
||||
</header>
|
||||
<div>
|
||||
<ul class="list">
|
||||
|
|
Loading…
Reference in a new issue