-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
136 lines (96 loc) · 5.54 KB
/
index.html
File metadata and controls
136 lines (96 loc) · 5.54 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<title>Julython Blog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="31 days and nights of Python">
<link href="./theme/css/main.css" rel="stylesheet" type="text/css"/>
<link href="./theme/css/pygments.css" rel="stylesheet" type="text/css"/>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,600' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Doppio+One' rel='stylesheet' type='text/css'/>
<link href='http://fonts.googleapis.com/css?family=Press+Start+2P' rel='stylesheet' type='text/css'>
</head>
<body id="index" class="home">
<div class="navbar navbar-fixed-top" id="topnav">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="."><img class="logo" alt="julython.org" src="./theme/images/julython_logo_small.png"/> Blog</a>
<div class="nav">
<ul class="nav">
<li><a href="/talks/">Talks</a></li>
<li ><a href="./category/code.html">Code</a></li>
<li ><a href="./category/julython.html">Julython</a></li>
</ul>
</div>
</div>
</div>
</div>
<a href="https://github.com/julython/julython.org">
<img style="position: absolute; top: 0; right: 0; border: 0; z-index: 9999;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
</a>
<div class="container-narrow section-container ">
<div class="row-fluid">
<div class="">
<div class="">
<h1>All articles</h1>
<div id="post-list">
<div class="row-fluid"><article class="hentry span12">
<header> <h2 class="participating"><a href="./2013/Jan/using-tastypie-with-backbone-and-knockout/" rel="bookmark" title="Permalink to Using Tastypie with Backbone and Knockout">Using Tastypie with Backbone and Knockout</a></h2> </header>
<footer class="post-info pull-right">
<abbr class="published" title="2013-01-02T10:09:00"> Wed 02 January 2013 </abbr>
<address class="vcard author">By <a class="url fn" href="./author/robert-myers.html">Robert Myers</a></address>
</footer><!-- /.post-info -->
<div class="span6"> <p class="first last">The Julython UI has been updated to be more responsive</p>
</div><!-- /.entry-content -->
</article></div>
<div class="row-fluid"><article class="hentry span12">
<header> <h2 class="participating"><a href="./2012/Dec/julython-code-refresh/" rel="bookmark" title="Permalink to Julython Code Refresh">Julython Code Refresh</a></h2> </header>
<footer class="post-info pull-right">
<abbr class="published" title="2012-12-27T13:12:00"> Thu 27 December 2012 </abbr>
<address class="vcard author">By <a class="url fn" href="./author/robert-myers.html">Robert Myers</a></address>
</footer><!-- /.post-info -->
<div class="span6"> <p class="first last">Julython is now running on Rackspace</p>
</div><!-- /.entry-content -->
</article></div>
<div class="row-fluid"><article class="hentry span12">
<header> <h2 class="spread-the-word"><a href="./2012/Dec/julython-in-january-janulython/" rel="bookmark" title="Permalink to Julython in January? J(an)ulython">Julython in January? J(an)ulython</a></h2> </header>
<footer class="post-info pull-right">
<abbr class="published" title="2012-12-12T12:12:00"> Wed 12 December 2012 </abbr>
<address class="vcard author">By <a class="url fn" href="./author/robert-myers.html">Robert Myers</a></address>
</footer><!-- /.post-info -->
<div class="span6"> <p class="first last">Julython is coming in January!</p>
</div><!-- /.entry-content -->
</article></div>
</div><!-- /#posts-list -->
<p class="paginator">
Page 1 / 1
</p>
</div><!-- /#content -->
</div>
<hr />
<div class="footer">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</div>
</div>
</div>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31203363-2']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
var disqus_shortname = 'julythonblog';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
</body>
</html>