Merge pull request #184 from haplo/ids-for-categories-and-tags-pages
Add id attribute to categories and tags pages
This commit is contained in:
commit
6caa5009f9
2 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<article class="single">
|
<article class="single">
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ _('Categories') }}</h1>
|
<h1 id="categories">{{ _('Categories') }}</h1>
|
||||||
</header>
|
</header>
|
||||||
<div>
|
<div>
|
||||||
<ul class="list">
|
<ul class="list">
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<article class="single">
|
<article class="single">
|
||||||
<header>
|
<header>
|
||||||
<h1>{{ _('Tags') }}</h1>
|
<h1 id="tags">{{ _('Tags') }}</h1>
|
||||||
</header>
|
</header>
|
||||||
<div>
|
<div>
|
||||||
<ul class="list">
|
<ul class="list">
|
||||||
|
|
Loading…
Reference in a new issue