A theme for pelican which mimics the look of LaTeX documents
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

tags.html 322 B

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