forked from github/pelican
This joins the contents of the block to the previous line, which messes up the output formatting in this case. Old vs new output: - <ul> <li>... + <ul> + <li>... This change is already in the 'notmyidea' theme.
12 lines
339 B
HTML
12 lines
339 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ SITENAME }} - Authors{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Authors on {{ SITENAME }}</h1>
|
|
<ul>
|
|
{% for author, articles in authors|sort %}
|
|
<li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock %}
|