Echo Writes Code

post.tera.html

1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "_base.tera.html" %}

{% block title %}{{ post.name }}{% endblock %}

{% block content %}
<article>
	<h1>{{ post.name }}</h1>
	<p class="timestamp">
		Published on <time datetime="{{ post.published }}">{{ post.published }}</time> • Updated on <time datetime="{{ post.updated }}">{{ post.updated }}</time>
	</p>
	{{ post.content | safe }}
</article>
{% endblock %}