Skip to content

Commit df2c323

Browse files
committed
Creating initial skeleton of the website.
1 parent 69f5f46 commit df2c323

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+12468
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
See the [gh-pages](https://github.com/makaimc/fullstackpython.github.com/tree/gh-pages) branch for source code.
1+
Code for statically generated site
2+
[Full Stack Python](http://www.fullstackpython.com) hosted on
3+
Github pages.

archives.html

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!-->
6+
<html class="no-js" lang="en"> <!--<![endif]-->
7+
8+
<head>
9+
<meta charset="utf-8">
10+
<meta name="language" content="English" />
11+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12+
13+
<title>Full Stack Python</title>
14+
<meta name="description" content="Full stack Python shows how an entire Python web application is built, from the server to the front end JavaScript.">
15+
<meta name="author" content="Matt Makai">
16+
<meta name="viewport" content="width=device-width,initial-scale=1">
17+
<link rel="stylesheet" href="/css/c.css" />
18+
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css" />
19+
<script src="/js/modernizr-2.0.6.min.js"></script>
20+
<script type="text/javascript">
21+
22+
var _gaq = _gaq || [];
23+
_gaq.push(['_setAccount', 'UA-19910497-7']);
24+
_gaq.push(['_trackPageview']);
25+
26+
(function() {
27+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30+
})();
31+
32+
</script>
33+
</head>
34+
35+
<body>
36+
<div class="container">
37+
<div class="row" style="margin-bottom: 20px;">
38+
<div class="span12">
39+
<h1>Full Stack Python</h1>
40+
</div>
41+
</div>
42+
<h1>Archives for Matt Makai</h1>
43+
44+
<dl>
45+
</dl>
46+
<hr/>
47+
<div class="footer pull-right">
48+
&copy; <a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
49+
</div>
50+
</div>
51+
52+
<script src="http://code.jquery.com/jquery-latest.js"></script>
53+
<script src="/js/bootstrap.min.js"></script>
54+
</body>
55+
</html>

categories.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!-->
6+
<html class="no-js" lang="en"> <!--<![endif]-->
7+
8+
<head>
9+
<meta charset="utf-8">
10+
<meta name="language" content="English" />
11+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12+
13+
<title>Full Stack Python</title>
14+
<meta name="description" content="Full stack Python shows how an entire Python web application is built, from the server to the front end JavaScript.">
15+
<meta name="author" content="Matt Makai">
16+
<meta name="viewport" content="width=device-width,initial-scale=1">
17+
<link rel="stylesheet" href="/css/c.css" />
18+
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css" />
19+
<script src="/js/modernizr-2.0.6.min.js"></script>
20+
<script type="text/javascript">
21+
22+
var _gaq = _gaq || [];
23+
_gaq.push(['_setAccount', 'UA-19910497-7']);
24+
_gaq.push(['_trackPageview']);
25+
26+
(function() {
27+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30+
})();
31+
32+
</script>
33+
</head>
34+
35+
<body>
36+
<div class="container">
37+
<div class="row" style="margin-bottom: 20px;">
38+
<div class="span12">
39+
<h1>Full Stack Python</h1>
40+
</div>
41+
</div>
42+
<ul>
43+
</ul>
44+
<hr/>
45+
<div class="footer pull-right">
46+
&copy; <a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
47+
</div>
48+
</div>
49+
50+
<script src="http://code.jquery.com/jquery-latest.js"></script>
51+
<script src="/js/bootstrap.min.js"></script>
52+
</body>
53+
</html>

css/bootstrap-responsive.min.css

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/c.css

Lines changed: 895 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/custom.css

Lines changed: 891 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

feeds/all.atom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?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>2012-12-23T14:35:36Z</updated></feed>

img/glyphicons-halflings-white.png

8.57 KB
Loading

img/glyphicons-halflings.png

12.5 KB
Loading

index.html

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
<!doctype html>
2+
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
3+
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
4+
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
5+
<!--[if gt IE 8]><!-->
6+
<html class="no-js" lang="en"> <!--<![endif]-->
7+
8+
<head>
9+
<meta charset="utf-8">
10+
<meta name="language" content="English" />
11+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
12+
13+
<title>Full Stack Python</title>
14+
<meta name="description" content="Full stack Python shows how an entire Python web application is built, from the server to the front end JavaScript.">
15+
<meta name="author" content="Matt Makai">
16+
<meta name="viewport" content="width=device-width,initial-scale=1">
17+
<link rel="stylesheet" href="/css/c.css" />
18+
<link rel="stylesheet" href="/css/bootstrap-responsive.min.css" />
19+
<script src="/js/modernizr-2.0.6.min.js"></script>
20+
<script type="text/javascript">
21+
22+
var _gaq = _gaq || [];
23+
_gaq.push(['_setAccount', 'UA-19910497-7']);
24+
_gaq.push(['_trackPageview']);
25+
26+
(function() {
27+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30+
})();
31+
32+
</script>
33+
</head>
34+
35+
<body data-spy="scroll" data-target="#fsp-side-nav" >
36+
<div class="container">
37+
<div class="row" style="margin-bottom: 20px;">
38+
<div class="span12">
39+
<h1>Full Stack Python</h1>
40+
</div>
41+
</div>
42+
<div class="row">
43+
<div class="span3" id="fsp-side-nav">
44+
<ul class="nav nav-list fsp-side-nav-ul affix">
45+
<li><a href="#summary">Summary</a></li>
46+
<li><a href="#servers">Servers</a></li>
47+
<li><a href="#operatingsystem">Operating System</a></li>
48+
</ul>
49+
</div>
50+
<div class="span9">
51+
<div>
52+
<section id="summary">
53+
<h2>Summary</h2>
54+
<p>Cupidatat flannel ex, locavore church-key synth ullamco umami. Intelligentsia lo-fi post-ironic, williamsburg VHS mcsweeney's nulla gastropub. Irony direct trade try-hard, artisan street art narwhal aliquip organic nihil. Austin wayfarers sunt direct trade lomo. Readymade cred street art semiotics. Raw denim placeat retro art party, ut ea cosby sweater cliche master cleanse pop-up aliquip williamsburg actually excepteur laborum. Cliche keffiyeh pop-up adipisicing, locavore lomo whatever stumptown cray small batch assumenda aliquip.
55+
56+
Tonx mustache consectetur, tattooed godard mixtape 90's et marfa vegan. Cupidatat scenester iphone labore, sapiente mcsweeney's excepteur PBR butcher sed locavore put a bird on it tumblr helvetica. In williamsburg Austin lo-fi. Church-key irure blog, terry richardson dolor kale chips pinterest. Consequat Austin ennui swag neutra proident. Banksy adipisicing est, accusamus lo-fi salvia blue bottle neutra fixie. Sapiente odd future labore cillum.
57+
58+
Put a bird on it marfa tonx, american apparel fanny pack selvage proident nostrud laboris. Eu non in swag, scenester nesciunt enim authentic before they sold out anim reprehenderit dreamcatcher pickled iphone qui. Leggings sapiente deep v locavore aute, est occupy aliquip deserunt wayfarers skateboard gluten-free literally truffaut. DIY aute nostrud et mollit. Placeat four loko VHS banjo jean shorts blue bottle, nulla aliqua leggings sint intelligentsia selvage. Enim chambray dreamcatcher, odio banjo literally pour-over ea. Nulla leggings exercitation helvetica, typewriter carles mcsweeney's put a bird on it portland.
59+
60+
Cliche chillwave VHS veniam nostrud. Sriracha forage selvage, salvia et gastropub pug quinoa Austin jean shorts. Quinoa cillum trust fund, pop-up sriracha sint sed pork belly magna. Assumenda photo booth qui organic, trust fund selfies reprehenderit magna vinyl mollit stumptown. Godard mixtape iphone bespoke four loko, wayfarers trust fund before they sold out do nesciunt chillwave twee banjo quinoa. High life freegan cillum, odio portland mustache gastropub bespoke dolor. Art party chillwave lo-fi helvetica forage, plaid seitan cray nesciunt twee cillum four loko proident butcher.</p>
61+
</section>
62+
63+
<section id="servers">
64+
<h2>Servers</h2>
65+
<p>Cupidatat flannel ex, locavore church-key synth ullamco umami. Intelligentsia lo-fi post-ironic, williamsburg VHS mcsweeney's nulla gastropub. Irony direct trade try-hard, artisan street art narwhal aliquip organic nihil. Austin wayfarers sunt direct trade lomo. Readymade cred street art semiotics. Raw denim placeat retro art party, ut ea cosby sweater cliche master cleanse pop-up aliquip williamsburg actually excepteur laborum. Cliche keffiyeh pop-up adipisicing, locavore lomo whatever stumptown cray small batch assumenda aliquip.
66+
67+
Tonx mustache consectetur, tattooed godard mixtape 90's et marfa vegan. Cupidatat scenester iphone labore, sapiente mcsweeney's excepteur PBR butcher sed locavore put a bird on it tumblr helvetica. In williamsburg Austin lo-fi. Church-key irure blog, terry richardson dolor kale chips pinterest. Consequat Austin ennui swag neutra proident. Banksy adipisicing est, accusamus lo-fi salvia blue bottle neutra fixie. Sapiente odd future labore cillum.
68+
69+
Put a bird on it marfa tonx, american apparel fanny pack selvage proident nostrud laboris. Eu non in swag, scenester nesciunt enim authentic before they sold out anim reprehenderit dreamcatcher pickled iphone qui. Leggings sapiente deep v locavore aute, est occupy aliquip deserunt wayfarers skateboard gluten-free literally truffaut. DIY aute nostrud et mollit. Placeat four loko VHS banjo jean shorts blue bottle, nulla aliqua leggings sint intelligentsia selvage. Enim chambray dreamcatcher, odio banjo literally pour-over ea. Nulla leggings exercitation helvetica, typewriter carles mcsweeney's put a bird on it portland.
70+
71+
Cliche chillwave VHS veniam nostrud. Sriracha forage selvage, salvia et gastropub pug quinoa Austin jean shorts. Quinoa cillum trust fund, pop-up sriracha sint sed pork belly magna. Assumenda photo booth qui organic, trust fund selfies reprehenderit magna vinyl mollit stumptown. Godard mixtape iphone bespoke four loko, wayfarers trust fund before they sold out do nesciunt chillwave twee banjo quinoa. High life freegan cillum, odio portland mustache gastropub bespoke dolor. Art party chillwave lo-fi helvetica forage, plaid seitan cray nesciunt twee cillum four loko proident butcher.</p>
72+
</section>
73+
74+
<section id="operatingsystem">
75+
<h2>Operating System</h2>
76+
<p>Odio master cleanse readymade cray, terry richardson disrupt chambray assumenda pork belly 3 wolf moon neutra do chillwave occupy. Accusamus 90's dolor cliche vinyl farm-to-table, esse ad williamsburg gastropub artisan literally try-hard. Raw denim pickled gastropub sartorial et exercitation. Polaroid direct trade selvage mumblecore hoodie consequat banjo brunch. Vero aliqua stumptown esse, ut banh mi helvetica flexitarian nesciunt godard. Odd future nostrud velit pitchfork, trust fund fanny pack craft beer intelligentsia Austin culpa. Laboris cillum actually, odd future pickled delectus butcher elit shoreditch tempor.
77+
78+
Banksy gentrify tempor proident squid helvetica viral synth. Odd future terry richardson polaroid fixie. Et street art duis tousled try-hard tonx. Helvetica incididunt flannel anim laborum. Enim adipisicing before they sold out, vero art party aliqua chillwave trust fund kogi typewriter banjo brooklyn aliquip irure. Quinoa fingerstache vice wayfarers, jean shorts ad literally disrupt vero ex non tattooed odio. Skateboard aliquip stumptown farm-to-table marfa nostrud ea consequat fingerstache +1, trust fund craft beer etsy messenger bag.
79+
80+
Small batch authentic esse plaid stumptown. Trust fund etsy +1 tempor church-key. Ullamco intelligentsia brunch williamsburg bushwick. Umami artisan four loko, dolore squid blog voluptate selvage delectus cupidatat ad beard eiusmod hella. Wolf typewriter cosby sweater, fixie do et tattooed retro nisi. Narwhal whatever sed neutra, ethical banksy cupidatat literally. Stumptown bicycle rights elit, cred readymade vero sint small batch vegan tattooed viral.
81+
82+
Nostrud ad freegan sint aliqua, fashion axe quis marfa keffiyeh. Consectetur ullamco non deep v. Street art aliquip mcsweeney's cosby sweater VHS nihil. Fingerstache consectetur leggings, pug chillwave qui nihil gluten-free. Mcsweeney's trust fund cosby sweater kale chips pickled williamsburg, salvia cred four loko banksy tofu flannel. Letterpress yr post-ironic, sartorial pork belly est narwhal nisi sapiente. Swag mcsweeney's tattooed cray next level.
83+
</p>
84+
</section>
85+
</div>
86+
</div>
87+
</div>
88+
<hr/>
89+
<div class="footer pull-right">
90+
&copy; <a href="http://www.mattmakai.com/" class="underline">Matt Makai</a> 2013
91+
</div>
92+
</div>
93+
94+
<script src="http://code.jquery.com/jquery-latest.js"></script>
95+
<script src="/js/bootstrap.min.js"></script>
96+
</body>
97+
</html>

0 commit comments

Comments
 (0)