blob: 07e1a4d8221945fa6e31e9d3514187c818f608e6 (
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
|
{% extends "main/base.html" %}
{% block title %}Information{% endblock %}
{% block og_title %}Information{% endblock %}
{% block og_description %}Informational pages, listings and guides{% 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">
Information
<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">
What you need, when you need it
</p>
<p>
<strong>Code Jams</strong>
<a href="{{ url_for('main.info.jams') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">Information on our monthly code jams, where users are paired into teams to compete with each other</span>
</p>
<p>
<strong>Getting Help</strong>
<a href="{{ url_for('main.info.help') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">How to ask for help - and how to interpret the responses</span>
</p>
<p>
<strong>Resources</strong>
<a href="{{ url_for('main.info.resources') }}"><i class="fas fa-link"></i></a>
<br />
<span class="uk-text-meta">A page full of useful resources for learning and working with Python</span>
</p>
</article>
</div>
</div>
{% endblock %}
|