blob: da3b6683e16513773f952bb5788377365e437be6 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{% extends "base.html" %}
{% block title_prefix %}{{article.name}} - {% endblock %}
{% block head %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="/article.css">
{% endblock %}
{% block content %}
<h1 class="inline">{{ article.name }}</h1> {% include 'article_meta_data.html' %}
{{ article.html|safe }}
{% endblock %}
|