A theme for pelican which mimics the look of LaTeX documents
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

13 satır
339 B

  1. {% extends "base.html" %}
  2. {% block title %}{{ SITENAME }} - Authors{% endblock %}
  3. {% block content %}
  4. <h1>Authors on {{ SITENAME }}</h1>
  5. <ul>
  6. {% for author, articles in authors|sort %}
  7. <li><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a> ({{ articles|count }})</li>
  8. {% endfor %}
  9. </ul>
  10. {% endblock %}