Files
universal_web_loco_rewrite/assets/views/blog/show.html
Priec 622afc310d UI
2026-05-17 15:16:51 +02:00

13 lines
344 B
HTML

{% 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 %}