fix: unused classes
This commit is contained in:
parent
32f3da64bb
commit
57cd789b06
3 changed files with 4 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
||||||
</span>
|
</span>
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if icon %}
|
{% if icon %}
|
||||||
<a class="link--icon {{ icon | downcase }}" href="/{{ link | downcase }}">
|
<a class="{{ icon | downcase }}" href="/{{ link | downcase }}">
|
||||||
{% tablericon icon link %}
|
{% tablericon icon link %}
|
||||||
</a>
|
</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<a
|
<a
|
||||||
class="link--icon {{ icon }}"
|
class="{{ icon }}"
|
||||||
href="{{ link | downcase }}"
|
href="{{ link | downcase }}"
|
||||||
rel="me"
|
rel="me"
|
||||||
title="{{ name }}">
|
title="{{ name }}">
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<nav class="pagination flex--centered">
|
<nav class="pagination flex--centered">
|
||||||
{% if pagination.href.previous %}
|
{% if pagination.href.previous %}
|
||||||
<a class="link--icon" href="{{ pagination.href.previous }}">
|
<a href="{{ pagination.href.previous }}">
|
||||||
<button aria-label="Previous page [&>svg]:h-5 [&>svg]:w-5">
|
<button aria-label="Previous page [&>svg]:h-5 [&>svg]:w-5">
|
||||||
{% tablericon "arrow-left" "Previous" %}
|
{% tablericon "arrow-left" "Previous" %}
|
||||||
</button>
|
</button>
|
||||||
|
@ -17,7 +17,7 @@
|
||||||
{{ pagination.pageNumber | plus: 1 }} of {{ pagination.links.size }}
|
{{ pagination.pageNumber | plus: 1 }} of {{ pagination.links.size }}
|
||||||
</div>
|
</div>
|
||||||
{% if pagination.href.next %}
|
{% if pagination.href.next %}
|
||||||
<a class="link--icon" href="{{ pagination.href.next }}">
|
<a href="{{ pagination.href.next }}">
|
||||||
<button aria-label="Next page">
|
<button aria-label="Next page">
|
||||||
{% tablericon "arrow-right" "Next" %}
|
{% tablericon "arrow-right" "Next" %}
|
||||||
</button>
|
</button>
|
||||||
|
|
Reference in a new issue