blob: 35fe6ae03f6d9903342badb005003a5db493f9f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{% extends "main/base.html" %}
{% block title %}About{% endblock %}
{% block og_title %}About{% endblock %}
{% block og_description %}Partners links, and information about the server{% endblock %}
{% block content %}
<div class="uk-section">
<div class="uk-container uk-container-small">
<article class="uk-article">
<h1 class="uk-article-title hover-title" id="top">
About
<a href="#top" class="uk-text-primary" title="Permanent link to this header">
<i class="fas fa-paragraph" data-fa-transform="shrink-8"></i>
</a>
</h1>
<p class="uk-article-meta">
Learn about the server, find links to our partners, and more!
</p>
<p>
<strong>Channels</strong>
<a href="{{ url_for('main.about.channels') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">Server channel listings and information</span>
</p>
<p>
<strong>Partners</strong>
<a href="{{ url_for('main.about.partners') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">Links to our partnered servers</span>
</p>
<p>
<strong>Rules</strong>
<a href="{{ url_for('main.about.rules') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">Rules and infraction information for our community</span>
</p>
</article>
</div>
</div>
{% endblock %}
|