codigocomentado/templates/post.html.tera

16 lines
473 B
Plaintext
Raw Normal View History

2019-11-17 22:09:58 +00:00
{% extends "base" %}
{% block title %}CódigoComentado - {{post.title}}{% endblock title %}
2019-11-17 22:09:58 +00:00
2019-11-20 21:59:35 +00:00
{% block extracss %}
<link href="/static/css/post.css" rel="stylesheet"/>
{% endblock extracss %}
2019-11-17 22:09:58 +00:00
{% block content %}
2019-11-20 21:59:35 +00:00
<h1 class="title"><strong>Title: </strong>{{ post.title }}</h1>
<span class="date"><strong>Date: </strong>{{ post.created_at | date(format="%Y-%m-%d") }}</span>
2019-11-17 22:09:58 +00:00
<article>
2019-11-20 21:59:35 +00:00
<strong>Content:</strong>
{{ post.content | safe }}
2019-11-17 22:09:58 +00:00
</article>
{% endblock content %}