mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-07-24 07:11:06 -04:00
22 lines
652 B
HTML
22 lines
652 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="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" src="{{ config.extra.author.avatar }}" />
|
|
</figure>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|