diff options
author | Justin Mayer <entroP@gmail.com> | 2017-09-04 11:08:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-04 11:08:07 -0700 |
commit | e315b00368413ea786712aa90ae3e84d4dacdafc (patch) | |
tree | a8ffa94d664e4dfc050e6087341fc2f7518418ed /pelican-bootstrap3/templates/includes/sidebar | |
parent | acddee8948a8e772394911a081d029ff07ea056a (diff) | |
parent | dcecbb6085f24420b14d97f06c53f49755db95c9 (diff) | |
download | pelican-themes-e315b00368413ea786712aa90ae3e84d4dacdafc.tar.gz |
Merge branch 'master' into archive-sidebar
Diffstat (limited to 'pelican-bootstrap3/templates/includes/sidebar')
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar/authors.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar/authors.html b/pelican-bootstrap3/templates/includes/sidebar/authors.html new file mode 100644 index 0000000..114c688 --- /dev/null +++ b/pelican-bootstrap3/templates/includes/sidebar/authors.html @@ -0,0 +1,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 %} |