codigocomentado/templates/post.html.tera

12 lines
262 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
{% block content %}
<h1><strong>Title: </strong>{{ post.title }}</h1>
<strong>Content:</strong>
<article>
{{ post.content | safe }}
2019-11-17 22:09:58 +00:00
</article>
{% endblock content %}