diff --git a/pelican/tests/output/basic/categories.html b/pelican/tests/output/basic/categories.html index e5a6a429..934c224b 100644 --- a/pelican/tests/output/basic/categories.html +++ b/pelican/tests/output/basic/categories.html @@ -20,12 +20,13 @@
  • yeah
  • - +

    Categories on A Pelican Blog

    +

    social

    diff --git a/pelican/tests/output/custom/categories.html b/pelican/tests/output/custom/categories.html index ad887b7b..0ab16b05 100644 --- a/pelican/tests/output/custom/categories.html +++ b/pelican/tests/output/custom/categories.html @@ -24,12 +24,13 @@
  • bar
  • - +

    Categories on Alexis' log

    +

    links

    diff --git a/pelican/tests/output/custom_locale/categories.html b/pelican/tests/output/custom_locale/categories.html index 694a2bd6..a9ca139a 100644 --- a/pelican/tests/output/custom_locale/categories.html +++ b/pelican/tests/output/custom_locale/categories.html @@ -24,12 +24,13 @@
  • bar
  • - +

    Categories on Alexis' log

    +

    links

    diff --git a/pelican/themes/simple/templates/authors.html b/pelican/themes/simple/templates/authors.html index 4914904f..9aee5db4 100644 --- a/pelican/themes/simple/templates/authors.html +++ b/pelican/themes/simple/templates/authors.html @@ -4,9 +4,8 @@ {% block content %}

    Authors on {{ SITENAME }}

    -
      - {%- for author, articles in authors|sort %} + {% for author, articles in authors|sort %}
    • {{ author }} ({{ articles|count }})
    • {% endfor %}
    diff --git a/pelican/themes/simple/templates/categories.html b/pelican/themes/simple/templates/categories.html index ec138480..7999de43 100644 --- a/pelican/themes/simple/templates/categories.html +++ b/pelican/themes/simple/templates/categories.html @@ -3,9 +3,10 @@ {% block title %}{{ SITENAME }} - Categories{% endblock %} {% block content %} -
      -{% for category, articles in categories|sort %} -
    • {{ category }} ({{ articles|count }})
    • -{% endfor %} -
    +

    Categories on {{ SITENAME }}

    +
      + {% for category, articles in categories|sort %} +
    • {{ category }} ({{ articles|count }})
    • + {% endfor %} +
    {% endblock %} diff --git a/pelican/themes/simple/templates/tags.html b/pelican/themes/simple/templates/tags.html index b5d1482d..b90b0ac3 100644 --- a/pelican/themes/simple/templates/tags.html +++ b/pelican/themes/simple/templates/tags.html @@ -4,7 +4,9 @@ {% block content %}

    Tags for {{ SITENAME }}

    - {%- for tag, articles in tags|sort %} +
      + {% for tag, articles in tags|sort %}
    • {{ tag }} ({{ articles|count }})
    • {% endfor %} +
    {% endblock %}