You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
712 B
22 lines
712 B
4 months ago
|
{# Switch to icon instead of text in `sm` view size for BS3 only. #}
|
||
|
{%- if prev %}
|
||
|
<li>
|
||
|
<a href="{{ prev.link|e }}" title="{{ _('Previous Chapter: ') + prev.title|striptags }}">
|
||
|
<span class="glyphicon glyphicon-chevron-left"></span>
|
||
|
<span class="hidden-sm">
|
||
|
{{ prev.title|striptags|truncate(length=16, killwords=True) }}
|
||
|
</span>
|
||
|
</a>
|
||
|
</li>
|
||
|
{%- endif %}
|
||
|
{%- if next %}
|
||
|
<li>
|
||
|
<a href="{{ next.link|e }}" title="{{ _('Next Chapter: ') + next.title|striptags }}">
|
||
|
<span class="hidden-sm">
|
||
|
{{ next.title|striptags|truncate(length=16, killwords=True) }}
|
||
|
</span>
|
||
|
<span class="glyphicon glyphicon-chevron-right"></span>
|
||
|
</a>
|
||
|
</li>
|
||
|
{%- endif %}
|