anarsec.guide/themes/DeepThought/templates/index.html
2024-04-14 20:52:43 +00:00

22 lines
686 B
HTML

{% extends "base.html" %}
{% block content %}
<section class="section">
<div class="container">
<div class="has-text-centered">
<h1 class="title is-2">{{ section.title }}</h1>
{% if section.description %}
<p class="subtitle is-4">{{ section.description }}</p>
{% endif %}
</div>
<div class="has-text-centered content">
{{ section.content | safe }}
{% if config.extra.author.avatar %}
<figure class="image is-flex is-justify-content-center is-align-items-center">
<img id="image-gay" class="no-dark" src="{{ config.extra.author.avatar }}" />
</figure>
{% endif %}
</div>
</div>
</section>
{% endblock %}