File: relations.html

package info (click to toggle)
iperf3 3.20-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 3,152 kB
  • sloc: ansic: 15,094; sh: 5,300; makefile: 243; python: 134
file content (21 lines) | stat: -rw-r--r-- 712 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{# 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 %}