mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
20 lines
436 B
Twig
Executable file
20 lines
436 B
Twig
Executable file
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article class="post">
|
|
<header>
|
|
<div class="title">
|
|
<h2>{{ page.header.title|raw }}</h2>
|
|
</div>
|
|
<div class="meta"></div>
|
|
</header>
|
|
{% include 'partials/messages.html.twig' %}
|
|
{% include 'partials/reset-form.html.twig' %}
|
|
</article>
|
|
{% endblock %}
|
|
|
|
|