codigocomentado/templates/posts.html.tera

12 lines
265 B
Plaintext
Raw Normal View History

2019-11-17 22:09:58 +00:00
{% 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 %}