aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/includes/sidebar/authors.html
blob: 114c688f9b7f53a48e618f3c8818e7471bbb7fa4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% if DISPLAY_AUTHORS_ON_SIDEBAR %}
  {% from 'includes/sidebar/macros.jinja' import title %}

<!-- Sidebar/Authors -->
<li class="list-group-item">
  <h4>{{ title(_('Authors'), DISABLE_SIDEBAR_TITLE_ICONS) }}</h4>
  <ul class="list-group" id="authors">
    {% for author, articles in authors|sort %}
    <li class="list-group-item">
      <a href="{{ SITEURL }}/{{ author.url }}">
        {%- if not DISABLE_SIDEBAR_TITLE_ICONS -%}
        <i class="fa fa-user fa-lg"></i>
        {%- endif -%}
        {{- author -}}
      </a>
      ({{ articles|count }})
    </li>
    {% endfor %}
  </ul>
</li>
<!-- End Sidebar/Authors -->
{% endif %}