forked from thomasdavis/backbonetutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.47 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
---
layout: default
title:
---
<h2>Beginner</h2>
<ul class="tutorials">
{% for post in site.posts %}
{% if post.type == "beginner" %}
<li><a href="{{ post.url }}">{{ post.title }}</a> » <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Intermediate</h2>
<ul class="tutorials">
{% for post in site.posts %}
{% if post.type == "intermediate" %}
<li><a href="{{ post.url }}">{{ post.title }}</a> » <a href="http://thomasdavis.github.com">Thomas Davis</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Cool Libraries</h2>
<ul class="tutorials">
<li><a href="http://ephox.github.com/vault/" alt="vault scala database api ephox">Vault</a> - Database API written in Scala</li>
<li><a href="http://ephox.github.com/argonaut/" alt="argonaut scala JSON library api ephox">Argonaut</a> - JSON Library written in Scala</li>
</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>
<li><a target="_blank" href="http://weblog.bocoup.com/organizing-your-backbone-js-application-with-modules">Organizing Your Backbone.js Application with Modules</a></li>
<li><a target="_blank" href="http://developer.teradata.com/blog/jasonstrimpel/2011/11/backbone-js-and-socket-io">Backbone.js and socket.io</a></li>
</ul>