mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
49 lines
1.2 KiB
Twig
49 lines
1.2 KiB
Twig
{% extends 'partials/base.html.twig' %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
{% set styles %}
|
|
#user-register .buttons {
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin: 1em 0;
|
|
}
|
|
|
|
#user-register .button {
|
|
margin: 0 1em;
|
|
}
|
|
#user-register .button:first-child {
|
|
margin: 0;
|
|
}
|
|
@media screen and (max-width: 480px) {
|
|
#user-register .buttons {
|
|
flex-direction: column;
|
|
}
|
|
#user-register .button {
|
|
width: 100%;
|
|
margin: 1em 0;
|
|
}
|
|
}
|
|
{% endset %}
|
|
{% do assets.addInlineCss(styles) %}
|
|
{% endblock %}
|
|
|
|
{% block menu %}
|
|
{% include 'partials/sidebar_right.html.twig' %}
|
|
{% endblock %}
|
|
|
|
{% 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 %}
|