forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.html
More file actions
42 lines (42 loc) · 1.9 KB
/
Copy pathsidebar.html
File metadata and controls
42 lines (42 loc) · 1.9 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
<div class="col-md-offset-1 col-md-3" id="sidebar">
<div class="panel panel-success">
<div class="panel-heading"><h3 class="panel-head">{% for p in pages|sort(attribute='sort-order') %}{% if page and p.slug == page.slug %}{{ p.title }}{% endif %}{% endfor %}{% if not page %}Full Stack Python{% endif %}</h3></div>
<div class="panel-body">
<a href="/">Full Stack Python</a> is an open book that explains
each Python web application stack layer and provides the
best web resources for those topics.
<hr/>
{% if not page %}
Check out the
<a href="/table-of-contents.html">table of contents</a> if you're
searching for a particular topic.
{% else %}
There's a work-in-progress
<a href="/full-stack-python-map.pdf">subjects map (.pdf)</a>
that visually lays out each chapter in addition to the table of
contents found below.
{% endif %}
<hr/>
Need more detailed tutorials and walkthroughs than what is
presented here?
<a href="/email.html">Sign up for an email alert when that content is created.</a>
<hr/>
<a href="http://twitter.com/mattmakai">Matt Makai</a> built
this site with assistance from community pull requests. On GitHub
you can <a href="https://github.com/makaimc">follow Matt</a>
to see the daily changes.
</div>
</div>
{% if page %}
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-head">Table of Contents</h3>
</div>
<div class="list-group">
{% for p in pages|sort(attribute='sort-order') %}
<a href="/{{ p.slug }}.html" class="list-group-item smaller-item {% if page and p.slug == page.slug %}active{% endif %}">{{ p.title }}</a>
{% endfor %}
</div>
</div>
{% endif %}
</div>