mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 11:58:53 +00:00
18 lines
441 B
Twig
18 lines
441 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h2>{{ form.message }}</h2>
|
|
</div>
|
|
<div class="meta">
|
|
<time class="published" datetime="{{ datestamp }}">{{ datestamp }}</time>
|
|
</div>
|
|
</header>
|
|
<p>{{'FUTURE.FORM_SUMMARY'|t}}</p>
|
|
|
|
{{ content|raw }}
|
|
|
|
{% include "forms/data.html.twig" %}
|
|
</article>
|
|
{% endblock %}
|