blob: 47db8f4e99c6498f2ca2cd69780e1bf14f94fceb (
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
|
{% 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>Server 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 Partner servers!</span>
</p>
<p>
<strong>Server 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 server</span>
</p>
</article>
</div>
</div>
{% endblock %}
|