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">
<!-- Intro -->
<section id="intro">
{% include 'partials/logo.html.twig' %}
<header>
<h2>{{ site.title|e('html') }}</h2>
<p>{{theme_config.slogan|raw}}</p>
</header>
</section>
<!-- Mini Posts -->
{% if theme_config.miniposts == true %}
{% block miniposts %}
{% include 'partials/miniposts.html.twig' %}
{% endblock %}
{% endif %}
<!-- About -->
{% if theme_config.footer.title or theme_config.footer.description %}
<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>
{% endif %}
<!-- Footer -->
<section id="footer">
{% block footer %}
{% include 'partials/footer.html.twig' %}
{% endblock %}
</section>
<!-- Intro -->
<section id="intro">
{% include 'partials/logo.html.twig' %}
<header>
<h2>{{ site.title|e('html') }}</h2>
<p>{{theme_config.slogan|raw}}</p>
</header>
</section>
<!-- Mini Posts -->
{% if theme_config.miniposts == true %}
{% block miniposts %}
{% include 'partials/miniposts.html.twig' %}
{% endblock %}
{% endif %}
<!-- About -->
{% if theme_config.footer.title or theme_config.footer.description %}
<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>
{% endif %}
<!-- Footer -->
<section id="footer">
{% block footer %}
{% include 'partials/footer.html.twig' %}
{% endblock %}
</section>
</section>