forked from github/pelican
13 lines
445 B
HTML
13 lines
445 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Authors - {{ SITENAME|striptags }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 class="text-3xl md:text-5xl">Authors</h1>
|
|
It's all me, silly you.
|
|
<!-- <ul> -->
|
|
<!-- {% for author, articles in authors|sort %} -->
|
|
<!-- <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li> -->
|
|
<!-- {% endfor %} -->
|
|
<!-- </ul> -->
|
|
{% endblock %}
|