This commit is contained in:
Priec
2026-05-17 15:16:51 +02:00
parent 27887bf664
commit 622afc310d
16 changed files with 617 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock title %}
{% block content %}
<article>
<h1>{{ article.title }}</h1>
<p>Views: {{ article.view_count }}</p>
{% if article.excerpt %}<p>{{ article.excerpt }}</p>{% endif %}
<div>{{ article.content | linebreaksbr | safe }}</div>
</article>
{% endblock content %}