Echo Writes Code

index.tera.html

1
2
3
4
5
6
7
8
9
10
{% extends "_page.tera.html" %}

{% block title %}Home{% endblock %}

{% block content %}
<article>
	<h1>Welcome!</h1>
	<p>Test test test</p>
</article>
{% endblock %}