diff options
Diffstat (limited to 'pelican-bootstrap3/templates/includes/sidebar')
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar/archive.html | 23 | ||||
-rw-r--r-- | pelican-bootstrap3/templates/includes/sidebar/authors.html | 22 |
2 files changed, 45 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/includes/sidebar/archive.html b/pelican-bootstrap3/templates/includes/sidebar/archive.html new file mode 100644 index 0000000..881897b --- /dev/null +++ b/pelican-bootstrap3/templates/includes/sidebar/archive.html @@ -0,0 +1,23 @@ +{% if DISPLAY_ARCHIVE_ON_SIDEBAR and MONTH_ARCHIVE_SAVE_AS %} + {% from 'includes/sidebar/macros.jinja' import title %} + +<!-- Sidebar/Archive --> +<li class="list-group-item"> + <h4>{{ title(_('Archive'), DISABLE_SIDEBAR_TITLE_ICONS) }}</h4> + <ul class="list-group" id="archive"> + {% for year, date_year in dates|groupby( 'date.year' )|sort(reverse=True) %} + {% for month, articles in date_year|groupby( 'date.month' )|sort(reverse=True) %} + <li class="list-group-item"> + <a href="{{ SITEURL }}/{{ MONTH_ARCHIVE_SAVE_AS.format(date=articles[0].date) }}"> + {%- if not DISABLE_SIDEBAR_TITLE_ICONS -%} + <i class="fa fa-calendar fa-lg"></i> + {%- endif -%} + {{ articles[0].date.strftime('%B') }} {{ year }} ({{ articles|count }}) + </a> + </li> + {% endfor %} + {% endfor %} + </ul> +</li> +<!-- End Sidebar/Archive --> +{% endif %} 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 %} |