Skip to content
Snippets Groups Projects
index.html 599 B
Newer Older
  • Learn to ignore specific revisions
  • anarsec's avatar
    anarsec committed
    {% extends "base.html" %}
    
    {% block content %}
    <section class="section">
      <div class="container">
        <div class="has-text-centered">
          <h1 class="title is-2">{{ section.title }}</h1>
          <p class="subtitle is-4">{{ section.description }}</p>
          {% 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 class="content">
          {{ section.content | safe }}
        </div>
      </div>
    </section>
    {% endblock %}