Convert tabs to spaces

This commit is contained in:
pikim 2023-01-19 23:43:37 +01:00
parent 3fe6574d0b
commit f54d14e37b

View file

@ -1,32 +1,32 @@
<section id="sidebar"> <section id="sidebar">
<!-- Intro --> <!-- Intro -->
<section id="intro"> <section id="intro">
{% include 'partials/logo.html.twig' %} {% include 'partials/logo.html.twig' %}
<header> <header>
<h2>{{ site.title|e('html') }}</h2> <h2>{{ site.title|e('html') }}</h2>
<p>{{theme_config.slogan|raw}}</p> <p>{{theme_config.slogan|raw}}</p>
</header> </header>
</section> </section>
<!-- Mini Posts --> <!-- Mini Posts -->
{% if theme_config.miniposts == true %} {% if theme_config.miniposts == true %}
{% block miniposts %} {% block miniposts %}
{% include 'partials/miniposts.html.twig' %} {% include 'partials/miniposts.html.twig' %}
{% endblock %} {% endblock %}
{% endif %} {% endif %}
<!-- About --> <!-- About -->
{% if theme_config.footer.title or theme_config.footer.description %} {% if theme_config.footer.title or theme_config.footer.description %}
<section class="blurb"> <section class="blurb">
<h2>{{theme_config.footer.title}}</h2> <h2>{{theme_config.footer.title}}</h2>
<p>{{theme_config.footer.description}}</p> <p>{{theme_config.footer.description}}</p>
<ul class="actions"> <ul class="actions">
<li><a href="{{theme_config.footer.button_url}}" class="button">{{theme_config.footer.button_text}}</a></li> <li><a href="{{theme_config.footer.button_url}}" class="button">{{theme_config.footer.button_text}}</a></li>
</ul> </ul>
</section> </section>
{% endif %} {% endif %}
<!-- Footer --> <!-- Footer -->
<section id="footer"> <section id="footer">
{% block footer %} {% block footer %}
{% include 'partials/footer.html.twig' %} {% include 'partials/footer.html.twig' %}
{% endblock %} {% endblock %}
</section> </section>
</section> </section>