mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-28 14:18:53 +00:00
14 lines
346 B
Twig
14 lines
346 B
Twig
{% extends 'partials/base.html.twig' %}
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h2>{{ page.header.title }}</h2>
|
|
</div>
|
|
<div class="meta">
|
|
</div>
|
|
</header>
|
|
{{ content|raw }}
|
|
{% include "forms/form.html.twig" %}
|
|
</article>
|
|
{% endblock %}
|