aboutsummaryrefslogtreecommitdiffstats
path: root/templates/main/index.html
blob: d8c5febc0ed67505861a9d4bd23ce6c23eda6dee (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
41
{% extends "main/base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
    <div class="uk-section uk-section-primary">
        <div class="uk-container uk-text-center">
            <h1 class="uk-header">
                Python Discord
            </h1>
            <p class="uk-text-lead">
                We're a large, friendly community focused around the Python programming language,
                open to those who wish to learn the language or improve their skills, as well as
                those looking to help others.
            </p>
            <p>
                We organise regular community events and have a dedicated staff of talented Python developers
                available to assist around the clock. Whether you're looking to learn the language or working
                on a complex project, we've got someone who can help you if you get stuck.
            </p>
            <div uk-grid class="uk-child-width-expand uk-grid-large">
                <div>
                    &nbsp;
                </div>
                <div>
                    <a href="/invite" class="uk-button uk-button-default uk-button-large uk-width-1-1">
                        Join us on &nbsp;<i class="uk-icon fab fa-discord"></i>
                    </a>
                </div>
                <div>
                    &nbsp;
                </div>
            </div>
            <hr class="uk-divider-icon" />
            <div class="uk-container uk-container-small uk-text-meta">
                <p>
                    Please note: this site is under construction. What you see now may be vastly different
                    from the final project state. Feel free to chat to us on Discord if you're curious!
                </p>
            </div>
        </div>
    </div>
{% endblock %}