mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Merge pull request #6092 from ericschultz/aria-pagination
Add aria-hidden to the pagination arrows
This commit is contained in:
commit
f1d7bd3bcb
1 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
|||
<nav class="pagination" role="navigation">
|
||||
{{#if prev}}
|
||||
<a class="newer-posts" href="{{page_url prev}}">← Newer Posts</a>
|
||||
<a class="newer-posts" href="{{page_url prev}}"><span aria-hidden="true">←</span> Newer Posts</a>
|
||||
{{/if}}
|
||||
<span class="page-number">Page {{page}} of {{pages}}</span>
|
||||
{{#if next}}
|
||||
<a class="older-posts" href="{{page_url next}}">Older Posts →</a>
|
||||
<a class="older-posts" href="{{page_url next}}">Older Posts <span aria-hidden="true">→</span></a>
|
||||
{{/if}}
|
||||
</nav>
|
||||
</nav>
|
||||
|
|
Loading…
Add table
Reference in a new issue