codigocomentado/templates/posts.html.tera

12 lines
265 B
Plaintext

{% extends "base" %}
{% block title %}{% endblock title %}
{% block content %}
<h1><strong>Title: </strong>{{ post.title }}</h1>
<strong>Content:</strong>
<article>
{{ post.content | split(pat="\n") | join(sep="----------") }}
</article>
{% endblock content %}