summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNietzsche <thomasalwyndavis@gmail.com>2012-08-10 20:35:14 +1000
committerNietzsche <thomasalwyndavis@gmail.com>2012-08-10 20:35:14 +1000
commit9b70f4b67a4a936ac1023e51b551dbb898421204 (patch)
treef926649c8e0927069932887e0ea1ff836ec92fad
parent033a82cb2774fb3332b99c7f75a3379fed0903d9 (diff)
downloadbackbonetutorials-9b70f4b67a4a936ac1023e51b551dbb898421204.zip
backbonetutorials-9b70f4b67a4a936ac1023e51b551dbb898421204.tar.gz
backbonetutorials-9b70f4b67a4a936ac1023e51b551dbb898421204.tar.bz2
mmm
-rw-r--r--_layouts/default.html52
-rw-r--r--_posts/2011-02-01-why-would-you-use-backbone.md4
-rw-r--r--_site/2011-12-12-cross-domain-backbone-apps.html54
-rw-r--r--_site/about.html54
-rw-r--r--_site/atom.xml4
-rw-r--r--_site/chat.html54
-rw-r--r--_site/contact.html54
-rw-r--r--_site/contribute.html54
-rw-r--r--_site/cross-domain-sessions/index.html54
-rw-r--r--_site/examples.html54
-rw-r--r--_site/index.html65
-rw-r--r--_site/infinite-scrolling/index.html54
-rw-r--r--_site/lessons.html54
-rw-r--r--_site/nodejs-restify-mongodb-mongoose/index.html54
-rw-r--r--_site/organizing-backbone-using-modules/index.html54
-rw-r--r--_site/rss.xml4
-rw-r--r--_site/what-is-a-collection/index.html54
-rw-r--r--_site/what-is-a-model/index.html54
-rw-r--r--_site/what-is-a-router/index.html54
-rw-r--r--_site/what-is-a-view/index.html54
-rw-r--r--_site/why-would-you-use-backbone/index.html56
-rw-r--r--index.html3
22 files changed, 463 insertions, 535 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 04ac6d9..7f4230a 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>{% if page.title %}{{page.title}} - {% endif %}Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,36 +35,33 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
diff --git a/_posts/2011-02-01-why-would-you-use-backbone.md b/_posts/2011-02-01-why-would-you-use-backbone.md
index d0a9415..2d43130 100644
--- a/_posts/2011-02-01-why-would-you-use-backbone.md
+++ b/_posts/2011-02-01-why-would-you-use-backbone.md
@@ -15,7 +15,9 @@ I shouldn't need to explain why building something without any structure is a ba
## So how does Backbone.js help?
-p. Backbone is an incredibly small library for the amount of functionality and structure it gives you. One can not easily summarize the benefits you will reap from using it. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.
+Backbone is an incredibly small library for the amount of functionality and structure it gives you. It is essentially MVC for the client and allows you to make your code modular. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.
+
+
### Relevant Links
diff --git a/_site/2011-12-12-cross-domain-backbone-apps.html b/_site/2011-12-12-cross-domain-backbone-apps.html
index 98b3150..45cefbc 100644
--- a/_site/2011-12-12-cross-domain-backbone-apps.html
+++ b/_site/2011-12-12-cross-domain-backbone-apps.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Cross Browser problems when consuming your own API - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h2>Cross Browser problems when consuming your own <span class="caps">API</span></h2>
diff --git a/_site/about.html b/_site/about.html
index 1d32b54..e27c0c3 100644
--- a/_site/about.html
+++ b/_site/about.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>About Backbone Tutorials - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<h2>About Backbone Tutorials</h2>
<p>As single page apps and large scale javascript applications become more prominent on the web, useful resources for those developers who are jumping the ship are crucial.</p>
diff --git a/_site/atom.xml b/_site/atom.xml
index 4b1918c..3407477 100644
--- a/_site/atom.xml
+++ b/_site/atom.xml
@@ -4,7 +4,7 @@
<title>Backbone Tutorials</title>
<link href="http://backbonetutorials.com/atom.xml" rel="self"/>
<link href="http://backbonetutorials.com/"/>
- <updated>2012-08-10T19:43:06+10:00</updated>
+ <updated>2012-08-10T20:34:15+10:00</updated>
<id>http://backbonetutorials.com/</id>
<author>
<name>Thomas Davis</name>
@@ -1306,7 +1306,7 @@ We should setup any useful containers that might be used by our Backbone views.&
&lt;h2&gt;So how does Backbone.js help?&lt;/h2&gt;
-&lt;p&gt;p. Backbone is an incredibly small library for the amount of functionality and structure it gives you. One can not easily summarize the benefits you will reap from using it. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.&lt;/p&gt;
+&lt;p&gt;Backbone is an incredibly small library for the amount of functionality and structure it gives you. It is essentially MVC for the client and allows you to make your code modular. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.&lt;/p&gt;
&lt;h3&gt;Relevant Links&lt;/h3&gt;
diff --git a/_site/chat.html b/_site/chat.html
index 2245908..c3329b0 100644
--- a/_site/chat.html
+++ b/_site/chat.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Chat - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<p>
<p>#cdnjs on irc.freenode.net, don&#8217;t forget to follow me on <a href="http://twitter.com/neutralthoughts" target="_blank">twitter</a>.</p><br />
diff --git a/_site/contact.html b/_site/contact.html
index 113d695..bd3cdd6 100644
--- a/_site/contact.html
+++ b/_site/contact.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Contact - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<h2>Contact</h2>
<p>You can contact the original owner of this site through <a href="https://github.com/thomasdavis">github</a> or via twitter(<a href="http://twitter.com/neutralthoughts">@neutralthoughts</a>).</p>
diff --git a/_site/contribute.html b/_site/contribute.html
index 0587f57..50e3941 100644
--- a/_site/contribute.html
+++ b/_site/contribute.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Contribute - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<h2>Contribute</h2>
<p>The main goal behind BackboneTutorials.com is to build a comprehensive guide for developers of all levels of experience. Discussion and debate are encouraged and will hopefully breed innovation for javascript applications.</p>
diff --git a/_site/cross-domain-sessions/index.html b/_site/cross-domain-sessions/index.html
index bea81af..0e1398e 100644
--- a/_site/cross-domain-sessions/index.html
+++ b/_site/cross-domain-sessions/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Cross-domain Backbone.js with sessions using CORS - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>Cross-domain Backbone.js with sessions using CORS</h1>
diff --git a/_site/examples.html b/_site/examples.html
index bdd977a..965b022 100644
--- a/_site/examples.html
+++ b/_site/examples.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Contact - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<h2>Examples of sites using Backbone.js</h2>
<h3><a href="http://app.protosal.com">Protosal.com</a></h3>
diff --git a/_site/index.html b/_site/index.html
index e2b80f4..2ca9386 100644
--- a/_site/index.html
+++ b/_site/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<h2>Beginner</h2>
<ul class="tutorials">
@@ -84,23 +80,23 @@
- <li><a href="/why-would-you-use-backbone">Why would you use Backbone.js?</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="/why-would-you-use-backbone">Why would you use Backbone.js?</a></li>
- <li><a href="/what-is-a-model">What is a model?</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="/what-is-a-model">What is a model?</a></li>
- <li><a href="/what-is-a-view">What is a view?</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="/what-is-a-view">What is a view?</a></li>
- <li><a href="/what-is-a-router">What is a router?</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="/what-is-a-router">What is a router?</a></li>
- <li><a href="/what-is-a-collection">What is a collection?</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="/what-is-a-collection">What is a collection?</a></li>
</ul>
@@ -143,7 +139,6 @@
</ul>
-<br /><br /><br />
<h2>External Tutorials</h2>
<ul class="tutorials">
<li><a target="_blank" href="http://thomasdavis.github.com/2011/02/01/backbone-introduction.html">Backbone.js Tutorial – by noob for noobs</a></li>
diff --git a/_site/infinite-scrolling/index.html b/_site/infinite-scrolling/index.html
index 6aacbfb..17e0fae 100644
--- a/_site/infinite-scrolling/index.html
+++ b/_site/infinite-scrolling/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Lightweight Infinite Scrolling using Twitter API - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>Lightweight Infinite Scrolling using Twitter API</h1>
diff --git a/_site/lessons.html b/_site/lessons.html
index 01b2b9d..486dbcc 100644
--- a/_site/lessons.html
+++ b/_site/lessons.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Lessons - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<p>If you and your team are looking to learn Backbone.js and other front end development skills, I am available to fly in and coach onsite.</p>
<p>If you would like to discuss team training with me, send an email directly to thomasalwyndavis@gmail.com</p>
diff --git a/_site/nodejs-restify-mongodb-mongoose/index.html b/_site/nodejs-restify-mongodb-mongoose/index.html
index 9f0597b..bce38b0 100644
--- a/_site/nodejs-restify-mongodb-mongoose/index.html
+++ b/_site/nodejs-restify-mongodb-mongoose/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Simple example - Node.js, Restify, MongoDb and Mongoose - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>Simple example - Node.js, Restify, MongoDb and Mongoose</h1>
diff --git a/_site/organizing-backbone-using-modules/index.html b/_site/organizing-backbone-using-modules/index.html
index 94a7175..e1583d3 100644
--- a/_site/organizing-backbone-using-modules/index.html
+++ b/_site/organizing-backbone-using-modules/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Organizing your application using Modules (require.js) - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>Organizing your application using Modules (require.js)</h1>
diff --git a/_site/rss.xml b/_site/rss.xml
index f018696..d32267f 100644
--- a/_site/rss.xml
+++ b/_site/rss.xml
@@ -4,7 +4,7 @@
<title>Backbone Tutorials</title>
<link href="http://backbonetutorials.com/atom.xml" rel="self"/>
<link href="http://backbonetutorials.com/"/>
- <updated>2012-08-10T19:43:06+10:00</updated>
+ <updated>2012-08-10T20:34:15+10:00</updated>
<id>http://backbonetutorials.com/</id>
<author>
<name>Thomas Davis</name>
@@ -1306,7 +1306,7 @@ We should setup any useful containers that might be used by our Backbone views.&
&lt;h2&gt;So how does Backbone.js help?&lt;/h2&gt;
-&lt;p&gt;p. Backbone is an incredibly small library for the amount of functionality and structure it gives you. One can not easily summarize the benefits you will reap from using it. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.&lt;/p&gt;
+&lt;p&gt;Backbone is an incredibly small library for the amount of functionality and structure it gives you. It is essentially MVC for the client and allows you to make your code modular. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.&lt;/p&gt;
&lt;h3&gt;Relevant Links&lt;/h3&gt;
diff --git a/_site/what-is-a-collection/index.html b/_site/what-is-a-collection/index.html
index 258fd23..af510cb 100644
--- a/_site/what-is-a-collection/index.html
+++ b/_site/what-is-a-collection/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>What is a collection? - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>What is a collection?</h1>
diff --git a/_site/what-is-a-model/index.html b/_site/what-is-a-model/index.html
index 7f070be..6e9e374 100644
--- a/_site/what-is-a-model/index.html
+++ b/_site/what-is-a-model/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>What is a model? - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>What is a model?</h1>
diff --git a/_site/what-is-a-router/index.html b/_site/what-is-a-router/index.html
index 94ff9b9..b564214 100644
--- a/_site/what-is-a-router/index.html
+++ b/_site/what-is-a-router/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>What is a router? - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>What is a router?</h1>
diff --git a/_site/what-is-a-view/index.html b/_site/what-is-a-view/index.html
index b8363b6..2a4ca95 100644
--- a/_site/what-is-a-view/index.html
+++ b/_site/what-is-a-view/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>What is a view? - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>What is a view?</h1>
diff --git a/_site/why-would-you-use-backbone/index.html b/_site/why-would-you-use-backbone/index.html
index b8d1c7e..9ac9050 100644
--- a/_site/why-would-you-use-backbone/index.html
+++ b/_site/why-would-you-use-backbone/index.html
@@ -1,7 +1,6 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
-<meta name="readability-verification" content="QaMWXDtxjtrFwfPQ2an55eWRMRLr7F2ermV5E9ch"/>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Why would you use Backbone.js? - Backbone.js Tutorials</title>
<link href="/atom.xml" rel="alternate" title="backbone tutorials" type="application/atom+xml">
@@ -36,41 +35,38 @@
</script>
</head>
<body>
- <div class="navbar ">
- <div class="navbar-inner">
- <div class="container">
- <button type="button"class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="/">Backbone Tutorials</a>
- <div class="nav-collapse collapse">
- <ul class="nav">
- <li class="">
- <a href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
- </li>
- <li class="">
- <a href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
- </li>
- </ul>
- </div>
- </div>
- </div>
- </div>
- <!--
+
+
+
+
+<div class="container">
+ <hr />
+
+<div class="">
+
+ <div class="row">
+ <div class="span12" style="position: relative;"> <h1>
+ <a class="" href="/">Backbone Tutorials</a>
+ </h1>
+ <h3>By <a href="http://thomasdavis.github.com">Thomas Davis</a></h3>
+ <span style="position: absolute; right: 0; top: 0;"><a href="http://twitter.com/neutralthoughts" class="twitter-follow-button">Follow @neutralthoughts</a>
+<br />
<a class="FlattrButton" style="display:none;" href="http://backbonetutorials.com/"></a>
<noscript><a href="http://flattr.com/thing/176986/Backbone-js-Tutorials" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a></noscript>
--->
-<div class="container">
-
-
+ </span><a class="btn btn-warning btn-mini" href="http://feeds.feedburner.com/BackboneTutorials">subscribe</a>
+ <a class="btn btn-success btn-mini" href="http://leanpub.com/backbonetutorials">download free - (.pdf, .MOBI, .ePUB)</a>
+<script src="//platform.twitter.com/widgets.js" type="text/javascript"></script>
+ </div>
+
+ </div>
+</div>
+ <hr />
<div class="row">
<div class="span12">
-
+
<div id="post">
<h1>Why do you need Backbone.js?</h1>
@@ -81,7 +77,7 @@
<h2>So how does Backbone.js help?</h2>
-<p>p. Backbone is an incredibly small library for the amount of functionality and structure it gives you. One can not easily summarize the benefits you will reap from using it. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.</p>
+<p>Backbone is an incredibly small library for the amount of functionality and structure it gives you. It is essentially MVC for the client and allows you to make your code modular. If you read through some of the beginner tutorials the benefits will soon become self evident and due to Backbone.js light nature you can incrementally include it in any current or future projects.</p>
<h3>Relevant Links</h3>
diff --git a/index.html b/index.html
index 15cf6d0..54cb488 100644
--- a/index.html
+++ b/index.html
@@ -8,7 +8,7 @@ title:
<ul class="tutorials">
{% for post in site.posts %}
{% if post.type == "beginner" %}
- <li><a href="{{ post.url }}">{{ post.title }}</a> &raquo; <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
@@ -29,7 +29,6 @@ title:
</ul>
-<br /><br /><br />
<h2>External Tutorials</h2>
<ul class="tutorials">
<li><a target="_blank" href="http://thomasdavis.github.com/2011/02/01/backbone-introduction.html">Backbone.js Tutorial – by noob for noobs</a></li>