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
36 lines (36 loc) · 1.46 KB
/
sidebar.html
File metadata and controls
36 lines (36 loc) · 1.46 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
{% if page %}
{% include "sponsor.html" %}
{% include "email-for-book-sidebar.html" %}
{% if not page.slug == "about-author" %}
{% include "full-toc.html" %}
{% endif %}
{% endif %}
<div class="panel">
{% if page and page.slug == "about-author" %}
<div class="panel-heading"><h3 class="panel-head">Updates</h3></div>
{% else %}
<div class="panel-heading"><h3 class="panel-head">{% for p in pages|sort(attribute='sortorder') %}{% if page and p.slug == page.slug %}{{ p.title }}{% endif %}{% endfor %}{% if not page %}Full Stack Python{% endif %}</h3></div>
{% endif %}
<div class="panel-body">
{% if not page %}
View the
<a href="/table-of-contents.html">table of contents</a> if you're
looking for a specific Python topic.
<hr/>
{% endif %}
Major updates are tweeted via
<a href="https://twitter.com/fullstackpython">@fullstackpython</a>.
<hr/>
Need more detailed tutorials than you see here?
<a href="http://www.deploypython.com/">Learn more about The Full Stack Python Guide to Deployments book.</a>
{% if not page %}
<hr/>
<a href="/">Full Stack Python</a> is an open book that explains
concepts in plain language and provides the most helpful resources
for those topics.
{% endif %}
</div>
</div>
{% if page %}
{% include "mobile-toc.html" %}
{% endif %}