{% extends "/views/base.html" %} {% block main %}

Homepage

{{doc.title}} {#: Main title. #}

{{_('Hello World!')}}

{#: Main title 2. #}

{{_('Hello World 2!')}}

{{doc.html|safe}}

{% set static = g.static('/static/test.txt', locale=doc.locale) %} Localized: {{static}} - {{static.url.path}}

{% for post in g.docs('posts') %}

{{post.title}}

{{post.html|safe}}
{% endfor %} {% endblock %}