Echo Writes Code

page.tera.html

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

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

{% block content %}
<h1>{{ page.name }}</h1>
{{ page.content | safe }}
{% endblock %}