article.html 443 B

123456789101112131415161718
  1. {% extends "base.html" %}
  2. {% block head %}
  3. {{ super() }}
  4. {% if article.tags %}
  5. <meta name="keywords" content="{{ article.tags|join(",") }}" />
  6. {% endif %}
  7. {% if article.description %}
  8. <meta name="description" content="{{ article.description }}" />
  9. {% endif %}
  10. {% endblock %}
  11. {% block title %}{{ SITENAME }} | {{ article.title }}{% endblock %}
  12. {% block content %}
  13. {% include "article_stub.html" %}
  14. {% endblock %}