18 lines
453 B
HTML
18 lines
453 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block head %}
|
||
|
{{ super() }}
|
||
|
{% if article.tags %}
|
||
|
<meta name="keywords" content="{{ article.tags|join(",") }}" />
|
||
|
{% endif %}
|
||
|
{% if article.description %}
|
||
|
<meta name="description" content="{{ article.description }}" />
|
||
|
{% endif %}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block title %}{{ SITENAME }} | {{ article.title|striptags }}{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% include "article_stub.html" %}
|
||
|
{% endblock %}
|