mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2024-11-15 01:42:45 +01:00
a7e1003c41
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
24 lines
938 B
HTML
24 lines
938 B
HTML
{# Switch to icon instead of text in `sm` view size for BS3 only. #}
|
|
{%- if prev or next %}
|
|
<ul class="prevnext-title list-unstyled list-inline">
|
|
{%- endif %}
|
|
{%- if prev %}
|
|
<li class="prev">
|
|
<a href="{{ prev.link|e }}" title="{{ _('Previous Chapter: ') + prev.title|striptags }}">
|
|
{%- if theme_bootstrap_version == "3" -%}<span class="glyphicon glyphicon-chevron-left visible-sm"></span>{%- endif -%}
|
|
<span class="hidden-sm">{{ "«"|safe }} {{ prev.title|striptags }}</span>
|
|
</a>
|
|
</li>
|
|
{%- endif %}
|
|
{%- if next %}
|
|
<li class="next">
|
|
<a href="{{ next.link|e }}" title="{{ _('Next Chapter: ') + next.title|striptags }}">
|
|
{%- if theme_bootstrap_version == "3" -%}<span class="glyphicon glyphicon-chevron-right visible-sm"></span>{%- endif -%}
|
|
<span class="hidden-sm">{{ next.title|striptags }} {{ "»"|safe }}</span>
|
|
</a>
|
|
</li>
|
|
{%- endif %}
|
|
{%- if prev or next %}
|
|
</ul>
|
|
{%- endif %}
|