localgov_guides-2.1.15/templates/guides-prev-next-block.html.twig
templates/guides-prev-next-block.html.twig
{#
/**
* @file
* Default theme implementation for the guides_prev_next_block block.
*/
#}
<nav class="localgov_guides--navigation">
{% if previous_url %}
<a href="{{ previous_url }}" class="btn btn-carbon localgov_guides--previous" aria-label="{{ 'Previous'|t }}: {{ previous_title }}">
<span class="fa fa-chevron-left"></span>{{ 'Previous'|t }}
{% if show_title == 1 %}
<span>{{ previous_title }}</span>
{% endif %}
</a>
{% endif %}
{% if next_url %}
<a href="{{ next_url }}" class="btn btn-primary localgov_guides--next" aria-label="{{ 'Next'|t }}: {{ next_title }}">
<span class="fa fa-chevron-right"></span>{{ 'Next'|t }}
{% if show_title == 1 %}
<span>{{ next_title }}</span>
{% endif %}
</a>
{% endif %}
</nav>
