9 lines
167 B
HTML
9 lines
167 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1>{{ article.title }}</h1>
|
|
{{ article.summary }}
|
|
{{ article.locale_date }}
|
|
<hr />
|
|
{{ article.content }}
|
|
{% endblock %}
|