Skip to content

Commit 372466a

Browse files
committed
moving location of learning checklist on web frameworks page
1 parent d4e03aa commit 372466a

File tree

7 files changed

+49
-41
lines changed

7 files changed

+49
-41
lines changed

cascading-style-sheets.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,15 +170,15 @@ <h2>CSS resources</h2>
170170
</ul>
171171
<h3>Once your app is styled what do you need to learn next?</h3>
172172
<div class="row">
173-
<div class="col-md-4">
173+
<div class="col-md-3">
174174
<div class="well select-next">
175175
<a href="/javascript.html" class="btn btn-success btn-full"><i class="fa fa-html5 fa-inverse fa-2x"></i></a>
176176
<p class="under-btn">
177177
How do I create more dynamic interaction in the browser with JavaScript?
178178
</p>
179179
</div>
180180
</div>
181-
<div class="col-md-4">
181+
<div class="col-md-3">
182182
<div class="well select-next">
183183
<a href="/static-content.html" class="btn btn-success btn-full"><i class="fa fa-spinner fa-inverse fa-2x"></i></a>
184184
</a>
@@ -187,13 +187,21 @@ <h3>Once your app is styled what do you need to learn next?</h3>
187187
</p>
188188
</div>
189189
</div>
190-
<div class="col-md-4">
190+
<div class="col-md-3">
191191
<div class="well select-next">
192192
<a href="/source-control.html" class="btn btn-success btn-full"><i class="fa fa-code-fork fa-inverse fa-2x"></i></a>
193193
<p class="under-btn">
194194
How can I save and version my code so it doesn't get lost?
195195
</p>
196196
</div>
197+
</div>
198+
<div class="col-md-3">
199+
<div class="well select-next">
200+
<a href="/application-programming-intefaces.html" class="btn btn-success btn-full"><i class="fa fa-exchange fa-2x"></i></a>
201+
<p class="under-btn">
202+
What are application programming interfaces?
203+
</p>
204+
</div>
197205
</div>
198206
</div> <style type="text/css">
199207
#mc_embed_signup{background:#fff; clear:left; font:12px "Helvetica Neue",Arial,sans-serif; }

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-05-11T13:34:59Z</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-05-11T20:15:47Z</updated></feed>

javascript.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ <h3>Do you need to style your app or deploy it next?</h3>
137137
</div>
138138
<div class="col-md-3">
139139
<div class="well select-next">
140-
<a href="/deployment.html" class="btn btn-success btn-full"><i class="fa fa-share fa-inverse fa-2x"></i></a>
140+
<a href="/application-programming-intefaces.html" class="btn btn-success btn-full"><i class="fa fa-exchange fa-2x"></i></a>
141141
<p class="under-btn">
142-
How do I deploy my web application?
142+
What are application programming interfaces?
143143
</p>
144144
</div>
145145
</div>

operating-systems.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h3>What topic do you need to learn to keep going?</h3>
150150
<div class="row">
151151
<div class="col-md-4">
152152
<div class="well select-next">
153-
<a href="/web-servers.html" class="btn btn-success btn-full"><i class="fa fa-exchange fa-inverse fa-2x"></i></a>
153+
<a href="/web-servers.html" class="btn btn-success btn-full"><i class="fa fa-cloud fa-2x"></i></a>
154154
<p class="under-btn">
155155
I'll install Linux as my OS. What web server should I use?
156156
</p>

servers.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ <h3>Keep going with a server or try a PaaS option?</h3>
191191
</div>
192192
<div class="col-md-4">
193193
<div class="well select-next">
194-
<a href="/web-servers.html" class="btn btn-success btn-full"><i class="fa fa-exchange fa-inverse fa-2x"></i></a>
194+
<a href="/web-servers.html" class="btn btn-success btn-full"><i class="fa fa-cloud fa-2x"></i></a>
195195
<p class="under-btn">
196196
I'll install Linux as my OS. Which web server should I use?
197197
</p>

source/content/pages/02-web-frameworks/0201-web-frameworks.markdown

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,6 @@ to reuse code for common HTTP operations and to structure your code so that
2828
it is maintainable.
2929

3030

31-
## Web frameworks learning checklist
32-
<i class="fa fa-check-square-o"></i>
33-
Choose a major web framework ([Django](/django.html) or
34-
[Flask](/flask.html) are recommended) and stick with it.
35-
36-
<i class="fa fa-check-square-o"></i>
37-
Work through a detailed tutorial found within the resources links on the
38-
framework's page.
39-
40-
<i class="fa fa-check-square-o"></i>
41-
Study open source examples built with your framework of choice so you can
42-
take parts of those projects and reuse the code in your application.
43-
44-
<i class="fa fa-check-square-o"></i>
45-
Build the first simple iteration of your web application then go to
46-
the [deployment](/deployment.html) section to make it accessible on the
47-
web.
48-
49-
5031
## Common web framework functionality
5132
Frameworks provide functionality in their code or through extensions to
5233
perform common operations required to run web applications. These common
@@ -75,6 +56,25 @@ There is a spectrum between minimal functionality with easy extensibility and
7556
including everything in the framework with tight integration.
7657

7758

59+
## Web frameworks learning checklist
60+
<i class="fa fa-check-square-o"></i>
61+
Choose a major web framework ([Django](/django.html) or
62+
[Flask](/flask.html) are recommended) and stick with it.
63+
64+
<i class="fa fa-check-square-o"></i>
65+
Work through a detailed tutorial found within the resources links on the
66+
framework's page.
67+
68+
<i class="fa fa-check-square-o"></i>
69+
Study open source examples built with your framework of choice so you can
70+
take parts of those projects and reuse the code in your application.
71+
72+
<i class="fa fa-check-square-o"></i>
73+
Build the first simple iteration of your web application then go to
74+
the [deployment](/deployment.html) section to make it accessible on the
75+
web.
76+
77+
7878
## General web framework resources
7979
* "[What is a web framework?](http://www.jeffknupp.com/blog/2014/03/03/what-is-a-web-framework/)"
8080
by [Jeff Knupp](https://twitter.com/jeffknupp)

web-frameworks.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,6 @@ <h2>Why are web frameworks necessary?</h2>
5252
years while building dynamic web applications. Frameworks make it easier
5353
to reuse code for common HTTP operations and to structure your code so that
5454
it is maintainable.</p>
55-
<h2>Web frameworks learning checklist</h2>
56-
<p><i class="fa fa-check-square-o"></i>
57-
Choose a major web framework (<a href="/django.html">Django</a> or
58-
<a href="/flask.html">Flask</a> are recommended) and stick with it.</p>
59-
<p><i class="fa fa-check-square-o"></i>
60-
Work through a detailed tutorial found within the resources links on the
61-
framework's page.</p>
62-
<p><i class="fa fa-check-square-o"></i>
63-
Study open source examples built with your framework of choice so you can
64-
take parts of those projects and reuse the code in your application.</p>
65-
<p><i class="fa fa-check-square-o"></i>
66-
Build the first simple iteration of your web application then go to
67-
the <a href="/deployment.html">deployment</a> section to make it accessible on the
68-
web.</p>
6955
<h2>Common web framework functionality</h2>
7056
<p>Frameworks provide functionality in their code or through extensions to
7157
perform common operations required to run web applications. These common
@@ -91,6 +77,20 @@ <h2>Common web framework functionality</h2>
9177
use with non-relational databases by incorporating external Python libraries.
9278
There is a spectrum between minimal functionality with easy extensibility and
9379
including everything in the framework with tight integration.</p>
80+
<h2>Web frameworks learning checklist</h2>
81+
<p><i class="fa fa-check-square-o"></i>
82+
Choose a major web framework (<a href="/django.html">Django</a> or
83+
<a href="/flask.html">Flask</a> are recommended) and stick with it.</p>
84+
<p><i class="fa fa-check-square-o"></i>
85+
Work through a detailed tutorial found within the resources links on the
86+
framework's page.</p>
87+
<p><i class="fa fa-check-square-o"></i>
88+
Study open source examples built with your framework of choice so you can
89+
take parts of those projects and reuse the code in your application.</p>
90+
<p><i class="fa fa-check-square-o"></i>
91+
Build the first simple iteration of your web application then go to
92+
the <a href="/deployment.html">deployment</a> section to make it accessible on the
93+
web.</p>
9494
<h2>General web framework resources</h2>
9595
<ul>
9696
<li>

0 commit comments

Comments
 (0)