blob: 3d5f386e914477e60571b1d0e2e56509a96a759f (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{% extends 'base/base.html' %}
{% load static %}
{% block title %}Home{% endblock %}
{% block head %}
<link rel="stylesheet" href="{% static "css/home/index.css" %}">
{% endblock %}
{% block content %}
<section class="hero is-primary">
<div class="hero-body">
<div class="container is-flex">
<img class="hero-image is-centered" src="{% static "images/logo_site_banner.svg" %}" alt="Python Discord logo" />
</div>
<div class="container has-text-centered">
<h1 class="title is-4">
The hottest Python community on the web
</h1>
</div>
</div>
<div class="hero-foot">
{% include "base/navbar.html" with active_item=False dropdowns=True icon_weight="fas" use_logo=False %}
</div>
</section>
<section class="section">
<div class="container is-spaced">
<div class="columns">
<div class="column is-two-thirds">
<p>
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.
<br /><br />
We organise regular community events and have a dedicated staff of
talented Python developers available to assist around the clock.
<br /><br />
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>
<div class="column is-one-third is-first has-text-centered">
<h1 class="title">Join the community</h1>
{# TODO: Fix URL #}
<a href="https://pythondiscord.com/invite">
<img class="discord-banner" src="https://discordapp.com/api/guilds/267624335836053506/embed.png?style=banner3" alt="Discord banner" />
</a>
</div>
</div>
</div>
</section>
<section class="section-sp hero is-light">
<div class="hero-body">
<div class="container">
<h1 class="title is-6 has-text-grey">
Sponsors
</h1>
<img src="{% static "images/sponsors/linode.png" %}" alt="" />
<img src="{% static "images/sponsors/jetbrains.png" %}" alt="" />
<img src="{% static "images/sponsors/adafruit.png" %}" alt="" />
</div>
</div>
</section>
{% include "base/footer.html" %}
{% endblock %}
|