37051-vm/core/templates/article_detail.html
Flatlogic Bot d80c3c0764 ai 1.0
2025-12-19 08:56:43 +00:00

15 lines
330 B
HTML

{% extends 'base.html' %}
{% block title %}{{ article.title }}{% endblock %}
{% block content %}
<div class="container mt-5">
<h1>{{ article.title }}</h1>
<p class="text-muted">Published on {{ article.created_at|date:"F d, Y" }}</p>
<hr>
<div>
{{ article.content|safe }}
</div>
</div>
{% endblock %}