{{ page.title }}
77 | 78 | {% if page.description %} 79 |80 | {{ page.description }} 81 |
82 | {% endif %} 83 | 84 | {{ content }} 85 | 86 |├── .gitignore
├── Gemfile
├── Gemfile.lock
├── README.md
├── _config.yml
├── _includes
├── footer.html
├── header.html
├── hublink.html
└── skipper.html
├── _layouts
├── default.html
└── tutorial.html
├── css
└── main.css
├── img
├── formidable-logo.svg
├── part-1.jpg
├── part-2.jpg
└── part-3.jpg
├── index.html
├── js
└── main.js
├── part-1-fundamentals.md
├── part-2-building-an-app.md
└── part-3-styles-with-radium.md
/.gitignore:
--------------------------------------------------------------------------------
1 | _site
2 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | gem 'github-pages'
2 |
--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
1 | GEM
2 | specs:
3 | RedCloth (4.2.9)
4 | activesupport (~> 4.2.2)
5 | i18n (~> 0.7)
6 | json (~> 1.7, >= 1.7.7)
7 | minitest (~> 5.1)
8 | thread_safe (~> 0.3, >= 0.3.4)
9 | tzinfo (~> 1.1)
10 | blankslate (2.1.2.4)
11 | celluloid (0.16.0)
12 | timers (~> 4.0.0)
13 | classifier-reborn (2.0.3)
14 | fast-stemmer (~> 1.0)
15 | coffee-script (2.3.0)
16 | coffee-script-source
17 | execjs
18 | coffee-script-source (1.9.1)
19 | colorator (0.1)
20 | execjs (2.3.0)
21 | fast-stemmer (1.0.2)
22 | ffi (1.9.6)
23 | gemoji (2.1.0)
24 | github-pages (33)
25 | RedCloth (= 4.2.9)
26 | github-pages-health-check (~> 0.2)
27 | jekyll (= 2.4.0)
28 | jekyll-coffeescript (= 1.0.1)
29 | jekyll-mentions (= 0.2.1)
30 | jekyll-redirect-from (= 0.6.2)
31 | jekyll-sass-converter (= 1.2.0)
32 | jekyll-sitemap (= 0.6.3)
33 | jemoji (= 0.4.0)
34 | kramdown (= 1.5.0)
35 | liquid (= 2.6.1)
36 | maruku (= 0.7.0)
37 | mercenary (~> 0.3)
38 | pygments.rb (= 0.6.1)
39 | rdiscount (= 2.1.7)
40 | redcarpet (= 3.1.2)
41 | terminal-table (~> 1.4)
42 | github-pages-health-check (0.2.1)
43 | net-dns (~> 0.6)
44 | public_suffix (~> 1.4)
45 | hitimes (1.2.2)
46 | html-pipeline (1.9.0)
47 | activesupport (~> 4.2.2)
48 | nokogiri (~> 1.4)
49 | i18n (0.7.0)
50 | jekyll (2.4.0)
51 | classifier-reborn (~> 2.0)
52 | colorator (~> 0.1)
53 | jekyll-coffeescript (~> 1.0)
54 | jekyll-gist (~> 1.0)
55 | jekyll-paginate (~> 1.0)
56 | jekyll-sass-converter (~> 1.0)
57 | jekyll-watch (~> 1.1)
58 | kramdown (~> 1.3)
59 | liquid (~> 2.6.1)
60 | mercenary (~> 0.3.3)
61 | pygments.rb (~> 0.6.0)
62 | redcarpet (~> 3.1)
63 | safe_yaml (~> 1.0)
64 | toml (~> 0.1.0)
65 | jekyll-coffeescript (1.0.1)
66 | coffee-script (~> 2.2)
67 | jekyll-gist (1.1.0)
68 | jekyll-mentions (0.2.1)
69 | html-pipeline (~> 1.9.0)
70 | jekyll (~> 2.0)
71 | jekyll-paginate (1.1.0)
72 | jekyll-redirect-from (0.6.2)
73 | jekyll (~> 2.0)
74 | jekyll-sass-converter (1.2.0)
75 | sass (~> 3.2)
76 | jekyll-sitemap (0.6.3)
77 | jekyll-watch (1.2.1)
78 | listen (~> 2.7)
79 | jemoji (0.4.0)
80 | gemoji (~> 2.0)
81 | html-pipeline (~> 1.9)
82 | jekyll (~> 2.0)
83 | json (1.8.2)
84 | kramdown (1.5.0)
85 | liquid (2.6.1)
86 | listen (2.8.5)
87 | celluloid (>= 0.15.2)
88 | rb-fsevent (>= 0.9.3)
89 | rb-inotify (>= 0.9)
90 | maruku (0.7.0)
91 | mercenary (0.3.5)
92 | mini_portile (0.6.2)
93 | minitest (5.5.1)
94 | net-dns (0.8.0)
95 | nokogiri (1.6.6.2)
96 | mini_portile (~> 0.6.0)
97 | parslet (1.5.0)
98 | blankslate (~> 2.0)
99 | posix-spawn (0.3.10)
100 | public_suffix (1.4.6)
101 | pygments.rb (0.6.1)
102 | posix-spawn (~> 0.3.6)
103 | yajl-ruby (~> 1.3.1)
104 | rb-fsevent (0.9.4)
105 | rb-inotify (0.9.5)
106 | ffi (>= 0.5.0)
107 | rdiscount (2.1.7)
108 | redcarpet (3.1.2)
109 | safe_yaml (1.0.4)
110 | sass (3.4.12)
111 | terminal-table (1.4.5)
112 | thread_safe (0.3.4)
113 | timers (4.0.1)
114 | hitimes
115 | toml (0.1.2)
116 | parslet (~> 1.5.0)
117 | tzinfo (1.2.2)
118 | thread_safe (~> 0.1)
119 | yajl-ruby (~> 1.3.1)
120 |
121 | PLATFORMS
122 | ruby
123 |
124 | DEPENDENCIES
125 | github-pages
126 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # README
2 |
3 | This is a Jekyll site. To run it:
4 |
5 | ```
6 | bundle install
7 | jekyll serve
8 | ```
9 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | exclude: [
2 | "Gemfile",
3 | "Gemfile.lock"
4 | ]
5 | markdown: "redcarpet"
6 | redcarpet:
7 | extensions: [with_toc_data]
8 |
--------------------------------------------------------------------------------
/_includes/footer.html:
--------------------------------------------------------------------------------
1 | {% if include.tutorial %}
2 | {% assign extra_class = 'Primary' %}
3 | {% endif %}
4 |
5 |
16 |
--------------------------------------------------------------------------------
/_includes/header.html:
--------------------------------------------------------------------------------
1 | {% if include.details %}
2 | {% assign list_class = 'TocList' %}
3 | {% else %}
4 | {% assign list_class = 'NavList' %}
5 | {% endif %}
6 |
7 |
80 | {{ page.description }} 81 |
82 | {% endif %} 83 | 84 | {{ content }} 85 | 86 |