forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (35 loc) · 1.38 KB
/
index.html
File metadata and controls
41 lines (35 loc) · 1.38 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
{% extends "base.html" %}
{% block meta_header %}
<meta name="description" content="Full Stack Python explains programming concepts in plain language and provides links to the best tutorials for those topics.">
{% endblock %}
{% block css %}{% include "css/index.html" %}{% endblock %}
{% block banner %}
{% endblock %}
{% block forkme %}
<a href="https://github.com/mattmakai/fullstackpython.com" id="forkme"><img style="position: absolute; top: 0; right: 0; border: 0;" src="/img/visuals/fork.png" alt="Fork me on GitHub"></a>
{% endblock %}
{% block content %}
<div class="row">
<div class="col-md-8">
{% for page in pages|sort(attribute='sortorder') %}
{% if page.slug == 'introduction' %}
{{ page.content }}
<p>
This guide branches out on topic because your learning
requirements depend on what you're working on. Select one
of the buttons below or check out the full
<a href="/table-of-contents.html">table of contents</a>.
</p>
<h3>What do you need to learn to create your application?</h3>
{% include "choices/index.html" %}
{% endif %}
{% endfor %}
</div>
{% include "index-sidebar.html" %}
</div>
{% endblock %}
{% block js %}
<script type='text/javascript'>
var trackOutboundLink = function(url) { ga('send', 'event', 'outbound', 'click', url, {'hitCallback': function () { document.location = url; } }); }
</script>
{% endblock %}