Cleans up formatting on about page

This commit is contained in:
Mouse Reeve
2021-02-23 19:58:04 -08:00
parent b4d9cdbe98
commit fcc0e0ccb6
5 changed files with 46 additions and 42 deletions

View File

@ -0,0 +1,22 @@
{% extends 'layout.html' %}
{% block content %}
<header class="block has-text-centered">
<h1 class="title">{{ site.name }}</h1>
<h2 class="subtitle">{{ site.instance_tagline }}</h2>
</header>
{% include 'discover/icons.html' %}
<section class="block">
{% include 'snippets/about.html' %}
</section>
<div class="block">
<h2 class="title">Code of Conduct</h2>
<div class="content">
{{ site.code_of_conduct | safe }}
</div>
</div>
{% endblock %}