Skip to content

Commit b3dff35

Browse files
committed
adding flask logo on site
1 parent 9698cd4 commit b3dff35

File tree

11 files changed

+24
-12
lines changed

11 files changed

+24
-12
lines changed

django.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ <h1>Django</h1>
4444
behind batteries-included is that the common functionality for building
4545
web applications should come with the framework instead of as separate
4646
libraries. </p>
47-
<p><img src="theme/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" /></p>
47+
<p><a href="http://www.djangoproject.com/" style="border: none;"><img src="theme/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" /></a></p>
4848
<p>For example,
4949
<a href="https://docs.djangoproject.com/en/dev/topics/auth/">authentication</a>,
5050
<a href="https://docs.djangoproject.com/en/dev/topics/http/urls/">URL routing</a>, a

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-06-17T08:56:20Z</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-06-17T09:06:11Z</updated></feed>

flask.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@
4040
<div class="col-md-8">
4141
<h1>Flask</h1>
4242
<p><a href="http://flask.pocoo.org/">Flask</a> is a Python web framework built with a
43-
<a href="http://flask.pocoo.org/docs/design/">small core and easy-to-extend philosophy</a>. </p>
43+
<a href="http://flask.pocoo.org/docs/design/">small core and easy-to-extend philosophy</a>.
44+
<a href="http://flask.pocoo.org/" style="border: none;"><img src="theme/img/flask.png" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram" /></a></p>
4445
<h2>Why is Flask a good web framework choice?</h2>
45-
<p>Flask is generally considered more
46+
<p>Flask is considered more
4647
<a href="http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic">Pythonic</a>
47-
than Django because Flask web application code is by and large more explicit.
48+
than Django because Flask web application code is in most cases more explicit.
4849
Flask is easy to get started with as a beginner because there is little
4950
boilerplate code for getting a simple app up and running. </p>
5051
<p>For example, here's a valid "hello world" web application with Flask (the

future-directions.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ <h1>Future Directions</h1>
5555
<li>
5656
<p>Update these sections with better explanations and resources: </p>
5757
<ol>
58-
<li><a href="/source-control.html">Source control</a></li>
5958
<li><a href="/configuration-management.html">Configuration management</a></li>
6059
<li><a href="/javascript.html">JavaScript</a></li>
6160
<li><a href="/api-integration.html">API integration</a></li>

source-control.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ <h2>Source control projects</h2>
7777
and open source distributed version control system.</p>
7878
</li>
7979
</ul>
80-
<h2>Source control hosted services</h2>
80+
<h2>Hosted source control services</h2>
81+
<p>Git and Mercurial can be downloaded and run on your own server. However,
82+
it's easy and cheap to get started with a hosted version control service.
83+
You can transition away from the service at a later time by moving your
84+
repositories if your needs change. A couple of recommended hosted version
85+
control services are:</p>
8186
<ul>
8287
<li>
8388
<p><a href="https://github.com/">GitHub</a> is currently the most commonly used source

source/content/pages/02-web-frameworks/0203-django.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ web applications should come with the framework instead of as separate
2424
libraries.
2525

2626

27-
<img src="theme/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" />
27+
<a href="http://www.djangoproject.com/" style="border: none;"><img src="theme/img/django-logo-positive.png" width="100%" alt="Official Django logo. Trademark Django Software Foundation." class="technical-diagram" /></a>
2828

2929

3030
For example,

source/content/pages/02-web-frameworks/0205-flask.markdown

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ choice4text: How can I version and store my source code so I don't lose it?
1919
# Flask
2020
[Flask](http://flask.pocoo.org/) is a Python web framework built with a
2121
[small core and easy-to-extend philosophy](http://flask.pocoo.org/docs/design/).
22+
<a href="http://flask.pocoo.org/" style="border: none;"><img src="theme/img/flask.png" width="100%" alt="Official Flask logo. Flask Artwork License." class="technical-diagram" /></a>
23+
2224

2325
## Why is Flask a good web framework choice?
24-
Flask is generally considered more
26+
Flask is considered more
2527
[Pythonic](http://stackoverflow.com/questions/58968/what-defines-pythonian-or-pythonic)
26-
than Django because Flask web application code is by and large more explicit.
28+
than Django because Flask web application code is in most cases more explicit.
2729
Flask is easy to get started with as a beginner because there is little
2830
boilerplate code for getting a simple app up and running.
2931

source/content/pages/03-deployment/0313-source-control.markdown

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,13 @@ today's Python development world. The two primary choices are:
6060
and open source distributed version control system.
6161

6262

63-
## Source control hosted services
63+
## Hosted source control services
64+
Git and Mercurial can be downloaded and run on your own server. However,
65+
it's easy and cheap to get started with a hosted version control service.
66+
You can transition away from the service at a later time by moving your
67+
repositories if your needs change. A couple of recommended hosted version
68+
control services are:
69+
6470
* [GitHub](https://github.com/) is currently the most commonly used source
6571
control platform for using Git.
6672

source/content/pages/10-misc/1007-future-directions.markdown

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ Here are some things I'm actively working on:
3535

3636
* Update these sections with better explanations and resources:
3737

38-
1. [Source control](/source-control.html)
3938
1. [Configuration management](/configuration-management.html)
4039
1. [JavaScript](/javascript.html)
4140
1. [API integration](/api-integration.html)

source/theme/static/img/flask.png

208 KB
Loading

0 commit comments

Comments
 (0)