15 lines
339 B
HTML
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 %}
|