mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-07-22 18:08:55 +00:00
30 lines
No EOL
974 B
Twig
30 lines
No EOL
974 B
Twig
<section id="sidebar">
|
|
<!-- Intro -->
|
|
<section id="intro">
|
|
<a href="{{home_url}}" class="logo">{% if customlogo %}<img src="{{ url( customlogo.path ) }}" alt="{{site.title}}" /></a>{% else %}<a href="{{home_url}}" class="">{{site.title}}</a>{% endif %}
|
|
<header>
|
|
<h2>{{ site.title|e('html') }}</h2>
|
|
<p>{{theme_config.slogan|raw}}</a></p>
|
|
</header>
|
|
</section>
|
|
<!-- Mini Posts -->
|
|
{% if theme_config.miniposts == true %}
|
|
{% block miniposts %}
|
|
{% include 'partials/miniposts.html.twig' %}
|
|
{% endblock %}
|
|
{% endif %}
|
|
<!-- About -->
|
|
<section class="blurb">
|
|
<h2>{{theme_config.footer.title}}</h2>
|
|
<p>{{theme_config.footer.description}}</p>
|
|
<ul class="actions">
|
|
<li><a href="{{theme_config.footer.button_url}}" class="button">{{theme_config.footer.button_text}}</a></li>
|
|
</ul>
|
|
</section>
|
|
<!-- Footer -->
|
|
<section id="footer">
|
|
{% block footer %}
|
|
{% include 'partials/footer.html.twig' %}
|
|
{% endblock %}
|
|
</section>
|
|
</section> |