-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 2.4 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 2.4 KB
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
<html>
<head>
<title>Fedora Loves Python</title>
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename='favicon.ico') }}" rel="shortcut icon" type="image/x-icon">
<link href="{{ url_for('json') }}" rel="alternate" type="application/json">
<link href="{{ url_for('plaintext') }}" rel="alternate" type="text/plain">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic&subset=latin' rel='stylesheet' type='text/css'>
</head>
<body>
<header>
<img src="{{ url_for('static', filename='img/fedoralovespython.svg') }}"
alt="">
</header>
<h1>Fedora Loves Python</h1>
<div class="points">
{% for point in points %}
<section class="point">
{% if 'logo_url' in point %}
<div class="point-logo">
<img src="{{ point.logo_url }}" alt="">
</div>
{% endif %}
<h2>{{ point.name }}</h2>
<div class="point-content">
{{ point.content | markdown }}
</div>
<div class="link">
<a href="{{ point.link.href }}">{{ point.link.caption }}</a>
</div>
</section>
{% endfor %}
</div>
<footer>
<p class="disclaimer">
{% filter markdown %}
This site is not affiliated with either the Fedora Project
or the Python Software Foundation.
The content, except for any trademarked logos or unless otherwise
noted, is licensed under [CC BY-SA] (by members of
[Fedora Python SIG]).
The micro:bit picture is *Copyright © 2016 British
Broadcasting Corporation*, licensed under [MIT].
All product names, logos, and brands are property of their
respective owners.
See and modify the sources at [GitHub].
See the points in: [JSON] | [Text] | [Terminal]
[CC BY-SA]: https://creativecommons.org/licenses/by-sa/4.0/legalcode
[Fedora Python SIG]: https://fedoraproject.org/wiki/SIGs/Python
[MIT]: https://github.com/lancaster-university/microbit-docs/blob/master/LICENSE
[GitHub]: https://github.com/fedora-python/fedoralovespython.org
[JSON]: index.json
[Text]: index.txt
[Terminal]: index.term
{% endfilter %}
</p>
</footer>
</body>
</html>