37133-vm/core/templates/core/article_detail.html
Flatlogic Bot fc22ac9ea6 FINAL
2025-12-23 18:05:13 +00:00

15 lines
339 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">Publicado em {{ article.created_at|date:"d \\de F \\de Y" }}</p>
<hr>
<div>
{{ article.content|safe }}
</div>
</div>
{% endblock %}