A theme for pelican which mimics the look of LaTeX documents
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
322 B

  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 %}