-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (73 loc) · 2.74 KB
/
index.html
File metadata and controls
107 lines (73 loc) · 2.74 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
---
layout: page
title: Learn Ruby on Rails
description: "Become a maker"
tags: [coding, resources, ruby, ruby on rails]
---
<iframe width="640" height="360" src="//www.youtube.com/embed/o-z_KPQnQc0?vq=hd1080" frameborder="0" allowfullscreen></iframe>
<h2 class="centered callout margined">Start at lesson 1, follow the sequence.</h2>
<ol class="post-list margined">
{% for post in site.categories.setup %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.datamodels %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.mvc %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.testingconfig %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.show %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.new %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.integration %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.edit %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.editupdateintegration %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.userauth %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.twitterauth %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ol>
{% include tweetforhelp.html %}
{% include calltoaction.html %}
<div class="margined">
<h2 class="centered callout margined">Supplemental Resources</h2>
<ul class="post-list no-list">
<h3>Ruby on Rails Tutor Ethos, Background and Useful to Know</h3>
{% for post in site.categories.rubyonrailstutor %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
<h3>Cohorts</h3>
{% for post in site.categories.cohorts %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
<h3>Challenges & Ruby Basics</h3>
{% for post in site.categories.challenges %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
{% for post in site.categories.basics %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
<h3>Product & Tech Reviews</h3>
{% for post in site.categories.product %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% include tweetforhelp.html %}
{% include about.html %}
{% include tweetforhelp.html %}
{% include calltoaction.html %}