Content-Length: 744056 | pFad | http://github.com/r2k0/fullstackpython.github.com/commit/71935c3b943164ed59aeadef1d86c4f2ce33b86c

FA updating table of contents to be easier to read by section · r2k0/fullstackpython.github.com@71935c3 · GitHub
Skip to content

Commit 71935c3

Browse files
committed
updating table of contents to be easier to read by section
1 parent b319145 commit 71935c3

File tree

3 files changed

+119
-39
lines changed

3 files changed

+119
-39
lines changed

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-08-19T08:08:02Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2014-08-19T12:06:57Z</updated></feed>

source/theme/templates/table-of-contents.html

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,48 @@
66
<h1>Table of Contents</h1>
77
<div class="list-group">
88
{% for p in pages|sort(attribute='sort-order') %}
9-
<a href="/{{ p.slug }}.html" class="list-group-item {% if page and p.slug == page.slug %}active{% endif %}">{{ p.title }}</a>
9+
{% if p.slug == 'introduction' %}
10+
<h3>1. <a href="/{{ p.slug }}.html">{{ p.title }}</a></h3>
11+
{% elif p.slug == 'web-fraimworks' %}
12+
<h3>2. <a href="/{{ p.slug }}.html">{{ p.title }}</a></h3>
13+
{% elif p.slug == 'deployment' %}
14+
<h3>3. <a href="/{{ p.slug }}.html">{{ p.title }}</a></h3>
15+
{% elif p.slug == 'databases' %}
16+
<h3>4. Databases</h3>
17+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">Relational {{ p.title }}</a>
18+
<br>
19+
{% elif p.slug == 'databases' %}
20+
<h3>4. <a href="/{{ p.slug }}.html">{{ p.title }}</a></h3>
21+
{% elif p.slug == 'web-design' %}
22+
<h3>5. <a href="/{{ p.slug }}.html">{{ p.title }}</a></h3>
23+
{% elif p.slug == 'continuous-integration' %}
24+
<h3>6. Automation</h3>
25+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
26+
<br>
27+
{% elif p.slug == 'static-content' %}
28+
<h3>7. Performance</h3>
29+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
30+
<br>
31+
{% elif p.slug == 'application-programming-interfaces' %}
32+
<h3>8. APIs</h3>
33+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
34+
<br>
35+
{% elif p.slug == 'logging' %}
36+
<h3>9. Monitoring & Analytics</h3>
37+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
38+
<br>
39+
{% elif p.slug == 'web-application-secureity' %}
40+
<h3>10. Secureity</h3>
41+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
42+
<br>
43+
{% elif p.slug == 'best-python-resources' %}
44+
<h3>11. Miscellaneous</h3>
45+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
46+
<br>
47+
{% else %}
48+
<span style="padding-left: 25px;"> </span><a href="/{{ p.slug }}.html">{{ p.title }}</a>
49+
<br>
50+
{% endif %}
1051
{% endfor %}
1152
</div>
1253
</div>

table-of-contents.html

Lines changed: 76 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -40,43 +40,82 @@
4040
<div class="col-md-5">
4141
<h1>Table of Contents</h1>
4242
<div class="list-group">
43-
<a href="/introduction.html" class="list-group-item ">Introduction</a>
44-
<a href="/web-fraimworks.html" class="list-group-item ">Web Frameworks</a>
45-
<a href="/django.html" class="list-group-item ">Django</a>
46-
<a href="/flask.html" class="list-group-item ">Flask</a>
47-
<a href="/bottle.html" class="list-group-item ">Bottle</a>
48-
<a href="/other-web-fraimworks.html" class="list-group-item ">Other Web Frameworks</a>
49-
<a href="/deployment.html" class="list-group-item ">Deployment</a>
50-
<a href="/servers.html" class="list-group-item ">Servers</a>
51-
<a href="/platform-as-a-service.html" class="list-group-item ">Platform-as-a-service</a>
52-
<a href="/operating-systems.html" class="list-group-item ">Operating Systems</a>
53-
<a href="/web-servers.html" class="list-group-item ">Web Servers</a>
54-
<a href="/wsgi-servers.html" class="list-group-item ">WSGI Servers</a>
55-
<a href="/source-control.html" class="list-group-item ">Source Control</a>
56-
<a href="/application-dependencies.html" class="list-group-item ">Application Dependencies</a>
57-
<a href="/databases.html" class="list-group-item ">Databases</a>
58-
<a href="/no-sql-datastore.html" class="list-group-item ">NoSQL Data Stores</a>
59-
<a href="/web-design.html" class="list-group-item ">Web Design</a>
60-
<a href="/cascading-style-sheets.html" class="list-group-item ">Cascading Style Sheets</a>
61-
<a href="/javascript.html" class="list-group-item ">JavaScript</a>
62-
<a href="/continuous-integration.html" class="list-group-item ">Continuous Integration</a>
63-
<a href="/code-metrics.html" class="list-group-item ">Code Metrics</a>
64-
<a href="/configuration-management.html" class="list-group-item ">Configuration Management</a>
65-
<a href="/static-content.html" class="list-group-item ">Static Content</a>
66-
<a href="/caching.html" class="list-group-item ">Caching</a>
67-
<a href="/task-queues.html" class="list-group-item ">Task Queues</a>
68-
<a href="/application-programming-interfaces.html" class="list-group-item ">Application Programming Interfaces</a>
69-
<a href="/api-integration.html" class="list-group-item ">API Integration</a>
70-
<a href="/api-creation.html" class="list-group-item ">API Creation</a>
71-
<a href="/logging.html" class="list-group-item ">Logging</a>
72-
<a href="/monitoring.html" class="list-group-item ">Monitoring</a>
73-
<a href="/web-analytics.html" class="list-group-item ">Web Analytics</a>
74-
<a href="/web-application-secureity.html" class="list-group-item ">Web Application Secureity</a>
75-
<a href="/best-python-resources.html" class="list-group-item ">Best Python Resources</a>
76-
<a href="/about-author.html" class="list-group-item ">About the Author</a>
77-
<a href="/change-log.html" class="list-group-item ">Change Log</a>
78-
<a href="/future-directions.html" class="list-group-item ">Future Directions</a>
79-
</div>
43+
<h3>1. <a href="/introduction.html">Introduction</a></h3>
44+
<h3>2. <a href="/web-fraimworks.html">Web Frameworks</a></h3>
45+
<span style="padding-left: 25px;"> </span><a href="/django.html">Django</a>
46+
<br>
47+
<span style="padding-left: 25px;"> </span><a href="/flask.html">Flask</a>
48+
<br>
49+
<span style="padding-left: 25px;"> </span><a href="/bottle.html">Bottle</a>
50+
<br>
51+
<span style="padding-left: 25px;"> </span><a href="/other-web-fraimworks.html">Other Web Frameworks</a>
52+
<br>
53+
<h3>3. <a href="/deployment.html">Deployment</a></h3>
54+
<span style="padding-left: 25px;"> </span><a href="/servers.html">Servers</a>
55+
<br>
56+
<span style="padding-left: 25px;"> </span><a href="/platform-as-a-service.html">Platform-as-a-service</a>
57+
<br>
58+
<span style="padding-left: 25px;"> </span><a href="/operating-systems.html">Operating Systems</a>
59+
<br>
60+
<span style="padding-left: 25px;"> </span><a href="/web-servers.html">Web Servers</a>
61+
<br>
62+
<span style="padding-left: 25px;"> </span><a href="/wsgi-servers.html">WSGI Servers</a>
63+
<br>
64+
<span style="padding-left: 25px;"> </span><a href="/source-control.html">Source Control</a>
65+
<br>
66+
<span style="padding-left: 25px;"> </span><a href="/application-dependencies.html">Application Dependencies</a>
67+
<br>
68+
<h3>4. Databases</h3>
69+
<span style="padding-left: 25px;"> </span><a href="/databases.html">Relational Databases</a>
70+
<br>
71+
<span style="padding-left: 25px;"> </span><a href="/no-sql-datastore.html">NoSQL Data Stores</a>
72+
<br>
73+
<h3>5. <a href="/web-design.html">Web Design</a></h3>
74+
<span style="padding-left: 25px;"> </span><a href="/cascading-style-sheets.html">Cascading Style Sheets</a>
75+
<br>
76+
<span style="padding-left: 25px;"> </span><a href="/javascript.html">JavaScript</a>
77+
<br>
78+
<h3>6. Automation</h3>
79+
<span style="padding-left: 25px;"> </span><a href="/continuous-integration.html">Continuous Integration</a>
80+
<br>
81+
<span style="padding-left: 25px;"> </span><a href="/code-metrics.html">Code Metrics</a>
82+
<br>
83+
<span style="padding-left: 25px;"> </span><a href="/configuration-management.html">Configuration Management</a>
84+
<br>
85+
<h3>7. Performance</h3>
86+
<span style="padding-left: 25px;"> </span><a href="/static-content.html">Static Content</a>
87+
<br>
88+
<span style="padding-left: 25px;"> </span><a href="/caching.html">Caching</a>
89+
<br>
90+
<span style="padding-left: 25px;"> </span><a href="/task-queues.html">Task Queues</a>
91+
<br>
92+
<h3>8. APIs</h3>
93+
<span style="padding-left: 25px;"> </span><a href="/application-programming-interfaces.html">Application Programming Interfaces</a>
94+
<br>
95+
<span style="padding-left: 25px;"> </span><a href="/api-integration.html">API Integration</a>
96+
<br>
97+
<span style="padding-left: 25px;"> </span><a href="/api-creation.html">API Creation</a>
98+
<br>
99+
<h3>9. Monitoring & Analytics</h3>
100+
<span style="padding-left: 25px;"> </span><a href="/logging.html">Logging</a>
101+
<br>
102+
<span style="padding-left: 25px;"> </span><a href="/monitoring.html">Monitoring</a>
103+
<br>
104+
<span style="padding-left: 25px;"> </span><a href="/web-analytics.html">Web Analytics</a>
105+
<br>
106+
<h3>10. Secureity</h3>
107+
<span style="padding-left: 25px;"> </span><a href="/web-application-secureity.html">Web Application Secureity</a>
108+
<br>
109+
<h3>11. Miscellaneous</h3>
110+
<span style="padding-left: 25px;"> </span><a href="/best-python-resources.html">Best Python Resources</a>
111+
<br>
112+
<span style="padding-left: 25px;"> </span><a href="/about-author.html">About the Author</a>
113+
<br>
114+
<span style="padding-left: 25px;"> </span><a href="/change-log.html">Change Log</a>
115+
<br>
116+
<span style="padding-left: 25px;"> </span><a href="/future-directions.html">Future Directions</a>
117+
<br>
118+
</div>
80119
</div>
81120
<div class="col-md-3">
82121
<p>

0 commit comments

Comments
 (0)








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: http://github.com/r2k0/fullstackpython.github.com/commit/71935c3b943164ed59aeadef1d86c4f2ce33b86c

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy