forked from thomasdavis/backbonetutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (90 loc) · 4.22 KB
/
index.html
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
---
layout: default
title:
---
<div class="row" >
<div class="col-lg-4">
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Beginners</h3>
</div>
<div class="list-group">
{% for post in site.posts %}
{% if post.type == "beginner" %}
<a href="{{ post.url }}" class="list-group-item ">{{ post.title }}</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="col-lg-4">
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">Intermediate</h3>
</div>
<div class="list-group">
{% for post in site.posts %}
{% if post.type == "intermediate" %}
<a href="{{ post.url }}" class="list-group-item ">{{ post.title }}</a>
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="col-lg-4">
<div class="panel panel-danger">
<div class="panel-heading">
<h3 class="panel-title">Advanced</h3>
</div>
<p>Coming soon...</p>
</div>
</div>
</div>
<div class="row" >
<div class="col-lg-12">
</div>
</div>
<div class="row" >
<div class="col-lg-6">
<div class="panel">
<div class="panel-heading">
<h3 class="panel-title">External Tutorials</h3>
</div>
<div class="list-group">
<a class="list-group-item" href="http://backboneboilerplate.com">Backbone Boilerplate - Using require.js with build system</a>
<a class="list-group-item" href="http://antoviaque.org/docs/tutorials/backbone-relational-tutorial/">Backbone-relational Tutorial - Nested Models With Backbone.js</a>
<a class="list-group-item" target="_blank" href="http://thomasdavis.github.com/2011/02/01/backbone-introduction.html">Backbone.js Tutorial – by noob for noobs</a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="panel">
<div class="panel-heading">
<h3 class="panel-title">Example Apps</h3>
</div>
<div class="list-group">
<a class="list-group-item" href="http://www.earbits.com">Earbits.com - Music streaming website</a>
<a class="list-group-item" href="http://kaleistyleguide.com/">Kalei - A living CSS styleguide</a>
<a class="list-group-item" href="http://apiengine.io">ApiEngine.io - Collaborativly build RESTful API's.</a>
<a class="list-group-item" href="https://github.com/alessioalex/ClientManager" alt="Sample application built with Backbone, RequireJS, Twitter Bootstrap on the client and Node.js (Express.js, Mongoose) on the server.">ClientManager - Sample application</a>
<a class="list-group-item" href="http://www.clevertim.com">Clevertim CRM - A simple CRM</a>
</div>
</div>
</div>
</div>
<!--
<h2>Backbone Boilerplate</h2>
<ul class="tutorials">
<li><a href="http://backboneboilerplate.com">Backbone Boilerplate - Using require.js with build system</a></li>
<li><a target="_blank" href="http://thomasdavis.github.com/2011/02/01/backbone-introduction.html">Backbone.js Tutorial – by noob for noobs</a></li>
</ul>
<h2>Demo apps!</h2>
<ul class="tutorials">
<li><a href="http://www.earbits.com">Earbits.com - Music streaming website built with Backbone.js - Great for programmers who listen to music when coding</a></li>
<li><a href="http://kaleistyleguide.com/">Kalei - A living CSS styleguide - Built with Backbone.js using these principles</a></li>
<li><a href="http://apiengine.io">ApiEngine.io</a> (Beta) - Collaborativly build RESTful API's with automated testing and client mocking.</li>
<li><a href="https://github.com/alessioalex/ClientManager" alt="Sample application built with Backbone, RequireJS, Twitter Bootstrap on the client and Node.js (Express.js, Mongoose) on the server.">ClientManager</a> - Sample application built with Backbone, RequireJS, Twitter Bootstrap on the client and Node.js (Express.js, Mongoose) on the server.</li>
<li><a href="http://antoviaque.org/docs/tutorials/backbone-relational-tutorial/">Backbone-relational Tutorial</a> - Nested Models With Backbone.js</li>
<li><a href="http://www.clevertim.com">Clevertim CRM - A real life example of implementing a simple CRM with backbone.js (check the Quick Demo)</a></li>
</ul>
-->