drjekyll 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5f8388480e3692910b92dcd78a42097b242f72f9
4
- data.tar.gz: 8ac266778b6fcf94ed8e86e6a80454e378fb3d6e
3
+ metadata.gz: 8c4b42aaf7a093056479aa35a4efcd92c18b2def
4
+ data.tar.gz: 4656923be96ebd515c1b27f26a8252a60620ca24
5
5
  SHA512:
6
- metadata.gz: 1970d2319f64132371a156f9a6b128568401781bd91a59d254b8fde164f7f8b960800e8b7682b14792515eb17ad4c294edd00fbc3284c6ad19da710d41e7195f
7
- data.tar.gz: 88523b5e8dce44330ffb9612703b0a345a39b30f927a7a3dbcc91f97a1a4d3334342d684f76700f9f3ef9685efead37bf502338a6f8d7bce0a6438863e5434d5
6
+ metadata.gz: 243f5abff4a876bb89515f2f4befdd9a9dc346da8203f785532ec99cf1a6e3aaf828654e3aad0042c03768676e559669d2e3d75605f47c93e8436e7b9a800e4a
7
+ data.tar.gz: 68da0a90445811a6474945a430c3fd6d0cda2552c57dfcc8b091773d7635f8a7b8777f19f7afecc9d85071632aefa63bf97f5461e1c936d2c543f116ca39861d
data/Manifest.txt CHANGED
@@ -15,3 +15,5 @@ lib/drjekyll/cli/unzip.rb
15
15
  lib/drjekyll/package.rb
16
16
  lib/drjekyll/version.rb
17
17
  test/data/themes.yml
18
+ test/helper.rb
19
+ test/test_catalog.rb
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # drjekyll - the missing theme package manager
1
+ # drj/drjekyll - the missing static site theme package manager
2
2
 
3
3
  jekyll command line tool
4
4
 
@@ -13,7 +13,6 @@ jekyll command line tool
13
13
 
14
14
  The drjekyll gem includes a command line tool that
15
15
  lets you manage static site theme packages.
16
-
17
16
  Try:
18
17
 
19
18
  ```
@@ -25,7 +24,7 @@ Resulting in:
25
24
 
26
25
  ```
27
26
  NAME
28
- drjekyll/drj - jekyll command line tool .:. the missing static site package manager
27
+ drjekyll/drj - jekyll command line tool .:. the missing static site theme package manager
29
28
 
30
29
  SYNOPSIS
31
30
  drjekyll/drj [global options] command [command options] [arguments...]
@@ -41,14 +40,20 @@ GLOBAL OPTIONS
41
40
  COMMANDS
42
41
  list, ls, l - List themes
43
42
  new, n - Download 'n' setup (unzip/unpack) theme
44
- download, dl, d, get, g - (Debug) Step 1: Download theme; .zip archive saved in working folder (./)
45
- unpack, pk, p, setup, s - (Debug) Step 2: Setup (unzip/unpack) theme; uses saved .zip archive in working folder (./)
46
43
  help - Shows a list of commands or help for one command
47
- test - (Debug) Test command suite
44
+
45
+ download, dl, d, get, g - (Debug) Step 1: Download theme; .zip archive saved in working folder (./)
46
+ unzip, setup, s - (Debug) Step 2: Setup (unzip/unpack) theme; uses .zip archive in working folder (./)
48
47
  ```
49
48
 
50
49
 
51
- ### List Themes Command - `list`, `ls`, `l`
50
+ ### Commands
51
+
52
+ [List Themes](#list-themes-command---list-ls-l) •
53
+ [New Theme](#new-theme-command---new-n)
54
+
55
+
56
+ #### List Themes Command - `list`, `ls`, `l`
52
57
 
53
58
  Use:
54
59
 
@@ -91,7 +96,7 @@ Resulting in:
91
96
  ```
92
97
 
93
98
 
94
- ### New Theme Command - `new`, `n`
99
+ #### New Theme Command - `new`, `n`
95
100
 
96
101
  To download and install (unzip/unpack) a theme archive use:
97
102
 
@@ -110,15 +115,15 @@ unzip the archive into the `./starter` folder.
110
115
  To download and install (unzip/unpack):
111
116
 
112
117
  ```
113
- 7..Poole's Lanyon (pooleslanyon) by Mark Otto - #poole
118
+ 7..Poole's Lanyon (lanyon | pooleslanyon) by Mark Otto - #poole
114
119
  ```
115
120
 
116
121
  Use:
117
122
 
118
123
  ```
119
- $ drjekyll new pooleslanyon # or
120
- $ drjekyll n pooleslanyon # or
121
- $ drj n pooleslanyon
124
+ $ drjekyll new lanyon # or
125
+ $ drjekyll n lanyon # or
126
+ $ drj n lanyon
122
127
  ```
123
128
 
124
129
  To download and install (unzip/unpack):
@@ -141,8 +146,12 @@ And so on and so forth.
141
146
 
142
147
  **More Themes**
143
148
 
144
- See the [Dr. Jekyll's Themes](https://drjekyllthemes.github.io) directory .
149
+ See the [Dr. Jekyll's Themes](https://drjekyllthemes.github.io) directory.
150
+
151
+
152
+ **More Quick Starter Wizard Scripts**
145
153
 
154
+ See the [Mr. Hyde's Scripts](https://github.com/mrhydescripts/scripts) library.
146
155
 
147
156
 
148
157
  ## Install
data/bin/drj CHANGED
File without changes
data/bin/drjekyll CHANGED
File without changes
@@ -22,7 +22,8 @@ class Catalog
22
22
 
23
23
 
24
24
  def initialize( text )
25
- @themes = YAML.load( text )
25
+ ## convert to "internal" inverted format (resolve shortcuts etc.)
26
+ @themes = convert( YAML.load( text ) )
26
27
 
27
28
  ## auto-add keys for now (for quick testing)
28
29
  @themes.each do |k,h|
@@ -50,6 +51,31 @@ class Catalog
50
51
  end
51
52
  end
52
53
 
54
+ def convert( themes )
55
+ ## see scripts in drjekyllthemes/build repo
56
+ ## todo/fix: use this class/code here in build script too - do NOT duplicate
57
+
58
+ ## build hash with themes by title
59
+ hash = {}
60
+
61
+ themes.each do |theme|
62
+ title = theme.delete( 'title' ) ## remove title from hash and use as new key
63
+
64
+ ## unify
65
+ ## check for github shortcut
66
+ github = theme.delete( 'github' )
67
+ if github
68
+ theme[ 'home_url' ] = "https://github.com/#{github}"
69
+ branch = theme.delete( 'branch' )
70
+ branch = 'master' if branch.nil? ## if no branch listed assume master
71
+ theme[ 'download_url' ] = "https://github.com/#{github}/archive/#{branch}.zip"
72
+ end
73
+ hash[ title ] = theme
74
+ end
75
+ hash
76
+ end # method convert
77
+
78
+
53
79
  def list( filter=nil )
54
80
  ## pp filter
55
81
 
@@ -26,6 +26,10 @@ class DownloadCommand ## find a better name - why, why not ??
26
26
 
27
27
  def download( key, theme )
28
28
  pak = Package.new( key, theme )
29
+
30
+ ## todo/fix:
31
+ ## add puts "GET URL" w/ color (bright/bold green)
32
+
29
33
  pak.download
30
34
  end
31
35
 
@@ -51,7 +51,9 @@ def self.fetch_catalog
51
51
  ## themes_dir = "#{DrJekyll.root}/test/data"
52
52
  ## catalog = Catalog.new( "#{themes_dir}/themes.yml" )
53
53
 
54
- url = "https://github.com/drjekyllthemes/themes/raw/master/o/themes.yml"
54
+ url = "https://github.com/drjekyllthemes/themes/raw/master/themes.yml"
55
+
56
+ puts "GET #{url}" ## todo/fix: add color (bright/bold green)
55
57
 
56
58
  catalog = Catalog.from_url( url )
57
59
  catalog
@@ -26,6 +26,10 @@ class NewCommand ## find a better name - why, why not ??
26
26
 
27
27
  def download_and_unzip( key, theme )
28
28
  pak = Package.new( key, theme )
29
+
30
+ ## todo/fix:
31
+ ## add puts "GET URL" w/ color (bright/bold green)
32
+
29
33
  pak.download
30
34
  pak.unzip( "./#{key}" )
31
35
  end
@@ -5,7 +5,7 @@ module DrJekyll
5
5
 
6
6
  MAJOR = 0
7
7
  MINOR = 1
8
- PATCH = 0
8
+ PATCH = 1
9
9
  VERSION = [MAJOR,MINOR,PATCH].join('.')
10
10
 
11
11
  def self.version
data/test/data/themes.yml CHANGED
@@ -1,877 +1,1035 @@
1
- ---
2
- Planet Jekyll's Starter (Minimal):
3
- demo_url: http://planetjekyll.github.io/jekyll-starter-theme/
1
+ ###############################
2
+ # Jekyll Themes
3
+
4
+ - title: Planet Jekyll's Starter (Minimal)
5
+ github: planetjekyll/jekyll-starter-theme
6
+ branch: gh-pages # used for github download archive link; defaults to master (for now)
7
+ demo_url: http://planetjekyll.github.io/jekyll-starter-theme/
4
8
  thumbnail: planet-jekyll-starter.png
5
- author: Gerald Bauer
6
- license: Public Domain
7
- tags:
8
- - white
9
- home_url: https://github.com/planetjekyll/jekyll-starter-theme
10
- download_url: https://github.com/planetjekyll/jekyll-starter-theme/archive/gh-pages.zip
11
- Dr Jekyll's Minimal:
12
- demo_url: http://drjekyllthemes.github.io/jekyll-minimal-theme/
9
+ author: Gerald Bauer
10
+ license: Public Domain
11
+ tags: [white]
12
+
13
+ - title: Dr Jekyll's Minimal
14
+ github: drjekyllthemes/jekyll-minimal-theme
15
+ branch: gh-pages
16
+ demo_url: http://drjekyllthemes.github.io/jekyll-minimal-theme/
13
17
  thumbnail: drjekyll-minimal.png
14
- author: Gerald Bauer
15
- license: Public Domain
16
- tags:
17
- - white
18
- home_url: https://github.com/drjekyllthemes/jekyll-minimal-theme
19
- download_url: https://github.com/drjekyllthemes/jekyll-minimal-theme/archive/gh-pages.zip
20
- Dr Jekyll's Bootstrap:
21
- demo_url: http://drjekyllthemes.github.io/jekyll-bootstrap-theme/
22
- author: Gerald Bauer
18
+ author: Gerald Bauer
19
+ license: Public Domain
20
+ tags: [white]
21
+
22
+ - title: Dr Jekyll's Bootstrap
23
+ github: drjekyllthemes/jekyll-bootstrap-theme
24
+ branch: gh-pages
25
+ demo_url: http://drjekyllthemes.github.io/jekyll-bootstrap-theme/
26
+ author: Gerald Bauer
23
27
  thumbnail: drjekyll-bootstrap.png
24
- license: Public Domain
25
- tags:
26
- - bootstrap
27
- - scss
28
- - white
29
- home_url: https://github.com/drjekyllthemes/jekyll-bootstrap-theme
30
- download_url: https://github.com/drjekyllthemes/jekyll-bootstrap-theme/archive/gh-pages.zip
31
- Dr Jekyll's Classics Book:
32
- demo_url: http://drjekyllthemes.github.io/jekyll-book-theme/
33
- author: Gerald Bauer
28
+ license: Public Domain
29
+ tags: [bootstrap, scss, white]
30
+
31
+ - title: Dr Jekyll's Classics Book
32
+ github: drjekyllthemes/jekyll-book-theme
33
+ branch: gh-pages
34
+ demo_url: http://drjekyllthemes.github.io/jekyll-book-theme/
35
+ author: Gerald Bauer
34
36
  thumbnail: drjekyll-book.png
35
- license: Public Domain
36
- tags:
37
- - books
38
- - white
39
- home_url: https://github.com/drjekyllthemes/jekyll-book-theme
40
- download_url: https://github.com/drjekyllthemes/jekyll-book-theme/archive/gh-pages.zip
41
- Poole:
42
- demo_url: http://demo.getpoole.com/
43
- author: Mark Otto
37
+ license: Public Domain
38
+ tags: [books, white]
39
+
40
+
41
+ - title: Poole
42
+ github: poole/poole
43
+ demo_url: http://demo.getpoole.com/
44
+ author: Mark Otto
44
45
  thumbnail: poole.png
45
- license: MIT
46
- tags:
47
- - poole
48
- home_url: https://github.com/poole/poole
49
- download_url: https://github.com/poole/poole/archive/master.zip
50
- Poole's Hyde:
51
- demo_url: http://hyde.getpoole.com/
52
- author: Mark Otto
46
+ license: MIT
47
+ tags: [poole]
48
+
49
+ - title: Poole's Hyde
50
+ github: poole/hyde
51
+ demo_url: http://hyde.getpoole.com/
52
+ author: Mark Otto
53
53
  thumbnail: poole-hyde.png
54
- license: MIT
55
- tags:
56
- - poole
57
- home_url: https://github.com/poole/hyde
58
- download_url: https://github.com/poole/hyde/archive/master.zip
59
- Poole's Lanyon:
60
- demo_url: http://lanyon.getpoole.com/
61
- author: Mark Otto
54
+ license: MIT
55
+ tags: [poole]
56
+
57
+ - title: Poole's Lanyon
58
+ github: poole/lanyon
59
+ demo_url: http://lanyon.getpoole.com/
60
+ author: Mark Otto
62
61
  thumbnail: poole-lanyon.png
63
- license: MIT
64
- tags:
65
- - poole
66
- home_url: https://github.com/poole/lanyon
67
- download_url: https://github.com/poole/lanyon/archive/master.zip
68
- Beautiful Jekyll:
69
- demo_url: http://deanattali.com/beautiful-jekyll/
70
- author: Dean Attali
62
+ license: MIT
63
+ tags: [poole]
64
+
65
+ - title: Beautiful Jekyll
66
+ github: daattali/beautiful-jekyll
67
+ demo_url: http://deanattali.com/beautiful-jekyll/
68
+ author: Dean Attali
71
69
  thumbnail: beautiful-jekyll.png
72
- license: MIT
73
- tags: []
74
- home_url: https://github.com/daattali/beautiful-jekyll
75
- download_url: https://github.com/daattali/beautiful-jekyll/archive/master.zip
76
- Jekyll New (Built-In Default):
77
- demo_url: http://jekyll.github.io/example/
78
- author: Joel Glovier et al
70
+ license: MIT
71
+ tags: []
72
+
73
+ - title: Jekyll New (Built-In Default)
74
+ github: jekyll/example
75
+ branch: gh-pages
76
+ demo_url: http://jekyll.github.io/example/
77
+ author: Joel Glovier et al
79
78
  thumbnail: jekyll-new.png
80
- license: MIT
81
- tags: []
82
- home_url: https://github.com/jekyll/example
83
- download_url: https://github.com/jekyll/example/archive/gh-pages.zip
84
- Jekyll Now:
85
- demo_url: http://www.jekyllnow.com/
86
- author: Barry Clark
79
+ license: MIT
80
+ tags: []
81
+
82
+
83
+ - title: Jekyll Now
84
+ github: barryclark/jekyll-now
85
+ demo_url: http://www.jekyllnow.com/
86
+ author: Barry Clark
87
87
  thumbnail: jekyll-now.png
88
- license: MIT
89
- tags: []
90
- home_url: https://github.com/barryclark/jekyll-now
91
- download_url: https://github.com/barryclark/jekyll-now/archive/master.zip
92
- Holo Alfa:
93
- demo_url: http://steinvc.github.io/holo-alfa/
94
- author: Stijn van Cuijk
88
+ license: MIT
89
+ tags: []
90
+
91
+
92
+
93
+ - title: Holo Alfa
94
+ github: steinvc/holo-alfa
95
+ branch: gh-pages
96
+ demo_url: http://steinvc.github.io/holo-alfa/
97
+ author: Stijn van Cuijk
95
98
  thumbnail: holo-alfa.png
96
- license: MIT
97
- tags: []
98
- home_url: https://github.com/steinvc/holo-alfa
99
- download_url: https://github.com/steinvc/holo-alfa/archive/gh-pages.zip
100
- "{ Personal }":
101
- home_url: https://github.com/PanosSakkos/personal-jekyll-theme
102
- download_url: https://github.com/PanosSakkos/personal-jekyll-theme/archive/master.zip
103
- demo_url: http://panossakkos.github.io
104
- author: Panos Sakkos
99
+ license: MIT
100
+ tags: []
101
+
102
+ - title: "{ Personal }"
103
+ home_url: https://github.com/PanosSakkos/personal-jekyll-theme
104
+ download_url: https://github.com/PanosSakkos/personal-jekyll-theme/archive/master.zip
105
+ demo_url: http://panossakkos.github.io
106
+ author: Panos Sakkos
105
107
  thumbnail: personal.jpg
106
- license: MIT
107
- tags: []
108
- Material Design Lite (MDL):
109
- home_url: https://github.com/gdg-managua/jekyll-mdl
110
- download_url: https://github.com/gdg-managua/jekyll-mdl/releases
111
- demo_url: http://www.gdgmanagua.org/jekyll-mdl
112
- author: Google Developers Group (GDG) Managua
108
+ license: MIT
109
+ tags: []
110
+
111
+
112
+ - title: Material Design Lite (MDL)
113
+ home_url: https://github.com/gdg-managua/jekyll-mdl
114
+ download_url: https://github.com/gdg-managua/jekyll-mdl/releases
115
+ demo_url: http://www.gdgmanagua.org/jekyll-mdl
116
+ author: Google Developers Group (GDG) Managua
113
117
  thumbnail: jekyll-mdl-screen.jpg
114
- license: Apache
115
- tags: []
116
- Scribble:
117
- home_url: https://github.com/muan/scribble
118
- download_url: https://github.com/muan/scribble/archive/master.zip
119
- demo_url: http://scribble.muan.co/2013/05/06/scribble-the-jekyll-theme/
120
- author: Mu-An Chiou
118
+ license: Apache
119
+ tags: []
120
+
121
+
122
+
123
+ - title: Scribble
124
+ home_url: https://github.com/muan/scribble
125
+ download_url: https://github.com/muan/scribble/archive/master.zip
126
+ demo_url: http://scribble.muan.co/2013/05/06/scribble-the-jekyll-theme/
127
+ author: Mu-An Chiou
121
128
  thumbnail: scribble.png
122
- license: MIT
123
- tags: []
124
- Green Tea:
125
- home_url: http://richbray.me/frap/
126
- download_url: http://richbray.me/frap/gt.zip
127
- demo_url: http://richbray.me/frap/gt/
128
- author: Richard Bray
129
+ license: MIT
130
+ tags: []
131
+
132
+ - title: Green Tea
133
+ home_url: http://richbray.me/frap/
134
+ download_url: http://richbray.me/frap/gt.zip
135
+ demo_url: http://richbray.me/frap/gt/
136
+ author: Richard Bray
129
137
  thumbnail: green-tea.png
130
- tags: []
131
- Vanilla Bean Creme:
138
+ tags: []
139
+
140
+ - title: Vanilla Bean Creme
132
141
  home_url: http://richbray.me/frap/
133
142
  download_url: http://richbray.me/frap/vbc.zip
134
143
  demo_url: http://richbray.me/frap/vbc/
135
144
  author: Richard Bray
136
145
  thumbnail: vanilla-bean-creme.png
137
- tags: []
138
- Solar:
146
+ tags: []
147
+
148
+ - title: Solar
139
149
  home_url: https://github.com/mattvh/solar-theme-jekyll
140
150
  download_url: https://github.com/mattvh/solar-theme-jekyll/archive/master.zip
141
151
  demo_url: http://mattvh.github.io/solar-theme-jekyll/
142
152
  author: Matt Harzewski
143
153
  thumbnail: solar.png
144
154
  license: GNU GPL
145
- tags: []
146
- Left:
155
+ tags: []
156
+
157
+ - title: Left
147
158
  home_url: https://github.com/holman/left
148
159
  download_url: https://github.com/holman/left/archive/gh-pages.zip
149
160
  demo_url: http://zachholman.com/left/
150
161
  author: Zach Holman
151
162
  thumbnail: left.png
152
163
  license: MIT
153
- tags: []
154
- Slate:
164
+ tags: []
165
+
166
+ - title: Slate
155
167
  home_url: https://github.com/jasoncostello/slate
156
168
  download_url: https://github.com/jasoncostello/slate/archive/master.zip
157
169
  author: Jason Costello
158
170
  thumbnail: slate.png
159
171
  license: MIT
160
- tags: []
161
- So Simple:
172
+ tags: []
173
+
174
+
175
+ - title: So Simple
162
176
  home_url: https://github.com/mmistakes/so-simple-theme
163
177
  download_url: https://github.com/mmistakes/so-simple-theme/archive/master.zip
164
178
  demo_url: http://mmistakes.github.io/so-simple-theme/
165
179
  author: Michael Rose
166
180
  thumbnail: so-simple.png
167
181
  license: MIT
168
- tags: []
169
- Minimal Mistakes:
182
+ tags: []
183
+
184
+ - title: Minimal Mistakes
170
185
  home_url: https://github.com/mmistakes/minimal-mistakes
171
186
  download_url: https://github.com/mmistakes/minimal-mistakes/archive/master.zip
172
187
  demo_url: http://mmistakes.github.io/minimal-mistakes/
173
188
  author: Michael Rose
174
189
  thumbnail: minimal-mistakes.png
175
190
  license: MIT
176
- tags: []
177
- Skinny Bones:
191
+ tags: []
192
+
193
+ - title: Skinny Bones
178
194
  home_url: https://github.com/mmistakes/skinny-bones-jekyll
179
195
  download_url: https://github.com/mmistakes/skinny-bones-jekyll/archive/master.zip
180
196
  demo_url: http://mmistakes.github.io/skinny-bones-jekyll/
181
197
  author: Michael Rose
182
198
  thumbnail: skinny-bones.gif
183
199
  license: MIT
184
- tags: []
185
- HiPSTeR (HPSTR):
200
+ tags: []
201
+
202
+ - title: HiPSTeR (HPSTR)
186
203
  home_url: https://github.com/mmistakes/hpstr-jekyll-theme
187
204
  download_url: https://github.com/mmistakes/hpstr-jekyll-theme/archive/master.zip
188
205
  demo_url: http://mmistakes.github.io/hpstr-jekyll-theme/
189
206
  author: Michael Rose
190
207
  thumbnail: hpstr.png
191
208
  license: MIT
192
- tags: []
193
- HiPSTeR (HPSTR) Version 2 - Vietnamese:
209
+ tags: []
210
+
211
+ - title: HiPSTeR (HPSTR) Version 2 - Vietnamese
194
212
  home_url: https://github.com/minhhuy150894/minhhuy150894.github.io
195
213
  download_url: https://github.com/minhhuy150894/minhhuy150894.github.io/archive/master.zip
196
214
  demo_url: http://minhhuy150894.github.io
197
215
  author: David Ng (Nguyen Minh Huy) - Michael Rose
198
216
  thumbnail: hpstr-v2.png
199
217
  license: MIT
200
- tags: []
201
- Balzac:
218
+ tags: []
219
+
220
+
221
+
222
+ - title: Balzac
202
223
  home_url: https://github.com/coletownsend/balzac-for-jekyll
203
224
  download_url: https://github.com/coletownsend/balzac-for-jekyll/archive/master.zip
204
225
  demo_url: http://jekyll.gtat.me
205
226
  author: Cole Townsend
206
227
  thumbnail: balzac.jpg
207
228
  license: MIT
208
- tags: []
209
- Lagom:
210
- home_url: https://github.com/swanson/lagom
211
- download_url: https://github.com/swanson/lagom/archive/master.zip
212
- author: Matt Swanson
229
+ tags: []
230
+
231
+ - title: Lagom
232
+ github: swanson/lagom
233
+ demo_url: http://lagom.mdswanson.com
234
+ author: Matt Swanson
213
235
  thumbnail: lagom.png
214
- license: MIT
215
- tags: []
216
- Dbyll:
236
+ license: MIT
237
+ tags: []
238
+
239
+
240
+ - title: Dbyll
217
241
  home_url: https://github.com/dbtek/dbyll
218
242
  download_url: https://github.com/dbtek/dbyll/archive/master.zip
219
243
  demo_url: http://dbtek.github.io/dbyll/
220
244
  author: Ismail Demirbilek
221
245
  thumbnail: dbyll.png
222
246
  license: MIT
223
- tags: []
224
- Exemplar:
247
+ tags: []
248
+
249
+ - title: Exemplar
225
250
  home_url: https://github.com/tybenz/exemplar
226
251
  download_url: https://github.com/tybenz/exemplar/archive/master.zip
227
252
  demo_url: http://exemplar.tybenz.com
228
253
  author: Tyler Benziger
229
254
  thumbnail: exemplar.png
230
255
  license: MIT
231
- tags: []
232
- Kasper:
256
+ tags: []
257
+
258
+ - title: Kasper
233
259
  home_url: https://github.com/rosario/kasper
234
260
  download_url: https://github.com/rosario/kasper/archive/master.zip
235
261
  demo_url: http://rosario.io/2013/11/10/kasper-theme-for-jekyll.html
236
262
  author: Rosario Rascuna
237
263
  thumbnail: kasper.png
238
264
  license: MIT
239
- tags: []
240
- Swift:
265
+ tags: []
266
+
267
+ - title: Swift
241
268
  home_url: https://github.com/pranavrajs/swift/
242
269
  download_url: https://github.com/pranavrajs/swift/archive/master.zip
243
270
  demo_url: http://pranavrajs.me/swift/
244
271
  author: Pranav Raj S
245
272
  thumbnail: swift.png
246
273
  license: MIT
247
- tags: []
248
- Flex:
274
+ tags: []
275
+
276
+ - title: Flex
249
277
  home_url: https://github.com/the-development/flex
250
278
  download_url: https://github.com/the-development/flex/archive/master.zip
251
279
  demo_url: http://the-development.github.io/flex
252
280
  author: Jeff Martin
253
281
  thumbnail: flex.png
254
282
  license: MIT
255
- tags: []
256
- H M Faysal's Omega:
257
- home_url: https://github.com/hmfaysal/hmfaysal-omega-theme
258
- download_url: https://github.com/hmfaysal/hmfaysal-omega-theme/archive/gh-pages.zip
259
- demo_url: http://hmfaysal.github.io/hmfaysal-omega-theme/
260
- author: Hossain Mohd Faysal
283
+ tags: []
284
+
285
+
286
+ ## !!! missing (broken) demo link
287
+ ##- title: HMFAYSAL
288
+ ## home_url: https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme
289
+ ## download_url: https://github.com/hmfaysal/Jekyll-HMFAYSAL-Theme/archive/master.zip
290
+ ## demo_url: ???
291
+ ## author: Hossain Mohd Faysal
292
+ ## thumbnail: hmfaysal.png
293
+ ## license: GNU General Public License Version 2
294
+
295
+ ## !!! missing (broken) demo link ???
296
+ ##- title: HMFAYSAL V2
297
+ ## home_url: https://github.com/hmfaysal/Jekyll-HMFAYSAL-V2-Theme
298
+ ## download_url: https://github.com/hmfaysal/Jekyll-HMFAYSAL-V2-Theme/archive/master.zip
299
+ ## demo_url: ???
300
+ ## author: Hossain Mohd Faysal
301
+ ## thumbnail: hmfaysal-v2.png
302
+ ## license: GNU General Public License Version 2
303
+
304
+
305
+ - title: H M Faysal's Omega
306
+ home_url: https://github.com/hmfaysal/hmfaysal-omega-theme
307
+ download_url: https://github.com/hmfaysal/hmfaysal-omega-theme/archive/gh-pages.zip
308
+ demo_url: http://hmfaysal.github.io/hmfaysal-omega-theme/
309
+ author: Hossain Mohd Faysal
261
310
  thumbnail: hmfaysal-omega.jpg
262
- license: MIT
263
- tags: []
264
- H M Faysal's Notepad:
265
- home_url: https://github.com/hmfaysal/Notepad
266
- download_url: https://github.com/hmfaysal/Notepad/archive/gh-pages.zip
267
- demo_url: http://hmfaysal.github.io/Notepad/
268
- author: Hossain Mohd Faysal
311
+ license: MIT
312
+ tags: []
313
+
314
+ - title: H M Faysal's Notepad
315
+ home_url: https://github.com/hmfaysal/Notepad
316
+ download_url: https://github.com/hmfaysal/Notepad/archive/gh-pages.zip
317
+ demo_url: http://hmfaysal.github.io/Notepad/
318
+ author: Hossain Mohd Faysal
269
319
  thumbnail: hmfaysal-notepad.png
270
- license: MIT
271
- tags: []
272
- Simply Grey:
320
+ license: MIT
321
+ tags: []
322
+
323
+
324
+
325
+ - title: Simply Grey
273
326
  home_url: https://github.com/mondss/simplygrey-jekyll
274
327
  download_url: https://github.com/mondss/simplygrey-jekyll/archive/master.zip
275
328
  author: Liam Symonds
276
329
  thumbnail: simply-grey.png
277
330
  license: BSD
278
- tags: []
279
- Herring Cove:
331
+ tags: []
332
+
333
+ - title: Herring Cove
280
334
  home_url: https://github.com/arnp/herring-cove
281
335
  download_url: https://github.com/arnp/herring-cove/archive/master.zip
282
336
  author: Ravi Patel
283
337
  thumbnail: herring-cove.jpg
284
338
  license: MIT
285
- tags: []
286
- Red Cup:
339
+ tags: []
340
+
341
+ ## 404 not found - check back ??
342
+ ## - title: hushaw
343
+ ## home_url: https://github.com/hushaw/hushaw.github.com
344
+ ## download_url: https://github.com/hushaw/hushaw.github.com/archive/master.zip
345
+ ## demo_url: http://hushaw.github.io
346
+ ## author: signifox
347
+ ## thumbnail: hushaw.png
348
+ ## license: MIT
349
+
350
+ - title: Red Cup
287
351
  home_url: https://github.com/nadjetey/redcup
288
352
  download_url: https://github.com/nadjetey/redcup/archive/master.zip
289
353
  demo_url: http://nadjetey.github.io/redcup/
290
354
  author: Nii Adjetey Sowah
291
355
  thumbnail: redcup.png
292
356
  license: CC BY
293
- tags: []
294
- Solo:
357
+ tags: []
358
+
359
+ - title: Solo ## (single-page)
295
360
  home_url: http://github.com/chibicode/solo/
296
361
  download_url: http://github.com/chibicode/solo/archive/master.zip
297
362
  demo_url: http://chibicode.github.io/solo/
298
363
  author: Shu Uesugi
299
364
  thumbnail: solo.png
300
365
  license: MIT
301
- tags: []
302
- Thinny:
366
+ tags: []
367
+
368
+ - title: Thinny
303
369
  home_url: https://github.com/camporez/Thinny
304
370
  download_url: https://github.com/camporez/Thinny/releases/latest
305
371
  demo_url: http://camporez.github.io/blog/thinny-2/
306
372
  author: Ian Camporez Brunelli
307
373
  thumbnail: thinny.png
308
374
  license: MIT
309
- tags: []
310
- Hikari:
375
+ tags: []
376
+
377
+ - title: Hikari
311
378
  home_url: https://github.com/mx3m/hikari-for-Jekyll
312
379
  download_url: https://github.com/mx3m/hikari-for-Jekyll/archive/master.zip
313
380
  demo_url: http://mx3m.github.io/hikari-for-Jekyll/
314
381
  author: Mathieu Mayer-Mazzoli
315
382
  thumbnail: hikari.png
316
383
  license: MIT
317
- tags: []
318
- Brume:
384
+ tags: []
385
+
386
+ - title: Brume
319
387
  home_url: https://github.com/aigarsdz/brume
320
388
  download_url: https://github.com/aigarsdz/brume/archive/master.zip
321
389
  demo_url: http://aigarsdz.github.io/brume
322
390
  author: Aigars Dzerviniks
323
391
  thumbnail: brume.png
324
392
  license: MIT
325
- tags: []
326
- Wangana:
393
+ tags: []
394
+
395
+ - title: Wangana
327
396
  home_url: https://github.com/nadjetey/wangana
328
397
  download_url: https://github.com/nadjetey/wangana/archive/master.zip
329
398
  demo_url: http://nadjetey.github.io/
330
399
  author: Nii Adjetey Sowah
331
400
  thumbnail: wangana.png
332
401
  license: MIT
333
- tags: []
334
- Incorporated:
402
+ tags: []
403
+
404
+ - title: Incorporated
335
405
  home_url: https://github.com/kippt/jekyll-incorporated
336
406
  download_url: https://github.com/kippt/jekyll-incorporated/archive/master.zip
337
407
  demo_url: http://blog.sendtoinc.com/
338
408
  author: Kippt Inc.
339
409
  thumbnail: incorporated.png
340
410
  license: MIT
341
- tags: []
342
- Gereksiz:
411
+ tags: []
412
+
413
+ - title: Gereksiz
343
414
  home_url: https://github.com/berkoz/gereksiz
344
415
  download_url: https://github.com/berkoz/gereksiz/archive/master.zip
345
416
  author: Berk Özbalcı
346
417
  thumbnail: gereksiz.png
347
418
  license: BSD
348
- tags: []
349
- Architect:
419
+ tags: []
420
+
421
+ - title: Architect
350
422
  home_url: https://github.com/pietromenna/jekyll-architect-theme
351
423
  download_url: https://github.com/pietromenna/jekyll-architect-theme/archive/master.zip
352
424
  author: Jason Long, ported by Pietro Menna
353
425
  thumbnail: architect.png
354
426
  license: CC BY
355
- tags: []
356
- Simpleyyt:
427
+ tags: []
428
+
429
+ - title: Simpleyyt
357
430
  home_url: https://github.com/Simpleyyt/simpleyyt.github.io
358
431
  download_url: https://github.com/Simpleyyt/simpleyyt.github.io/archive/master.zip
359
432
  demo_url: http://simpleyyt.github.io/
360
433
  author: Yitao Yao
361
434
  thumbnail: simpleyyt.png
362
435
  license: MIT
363
- tags: []
364
- Noita:
436
+ tags: []
437
+
438
+ - title: Noita
365
439
  home_url: https://github.com/penibelst/jekyll-noita
366
440
  download_url: https://github.com/penibelst/jekyll-noita/archive/gh-pages.zip
367
441
  demo_url: http://noita.penibelst.de/
368
442
  author: Anatol Broder
369
443
  thumbnail: noita.png
370
444
  license: MIT
371
- tags: []
372
- Clean Magic Medium:
373
- home_url: https://github.com/SpaceG/CleanMagicMedium-Jekyll
374
- download_url: https://github.com/SpaceG/CleanMagicMedium-Jekyll/archive/master.zip
375
- demo_url: http://www.lucasgatsas.ch
376
- author: Lucas Gatsas
445
+ tags: []
446
+
447
+
448
+ - title: Clean Magic Medium
449
+ home_url: https://github.com/SpaceG/CleanMagicMedium-Jekyll
450
+ download_url: https://github.com/SpaceG/CleanMagicMedium-Jekyll/archive/master.zip
451
+ demo_url: http://www.lucasgatsas.ch
452
+ author: Lucas Gatsas
377
453
  thumbnail: cleanmagicmedium.png
378
- license: Apache
379
- tags: []
380
- Ice & Fire:
381
- home_url: https://github.com/SpaceG/iceandfire
382
- download_url: https://github.com/SpaceG/iceandfire/archive/master.zip
383
- demo_url: http://lucasgatsas.ch
384
- author: Lucas Gatsas
454
+ license: Apache
455
+ tags: []
456
+
457
+ - title: Ice & Fire
458
+ home_url: https://github.com/SpaceG/iceandfire
459
+ download_url: https://github.com/SpaceG/iceandfire/archive/master.zip
460
+ demo_url: http://lucasgatsas.ch
461
+ author: Lucas Gatsas
385
462
  thumbnail: ice-and-fire.png
386
- license: Apache
387
- tags: []
388
- Otter Pop:
463
+ license: Apache
464
+ tags: []
465
+
466
+
467
+ - title: Otter Pop
389
468
  home_url: https://github.com/tybenz/otter-pop/
390
469
  download_url: https://github.com/tybenz/otter-pop/archive/gh-pages.zip
391
470
  demo_url: http://tybenz.com/otter-pop
392
471
  author: Tyler Benziger
393
472
  thumbnail: otter-pop.png
394
473
  license: MIT
395
- tags: []
396
- Block Log:
474
+ tags: []
475
+
476
+ - title: Block Log
397
477
  home_url: https://github.com/anandubajith/block-log
398
478
  download_url: https://github.com/anandubajith/block-log/archive/master.zip
399
479
  demo_url: http://anandu.net/demo/block-log/
400
480
  author: Anandu B Ajith
401
481
  thumbnail: block-log.png
402
482
  license: MIT
403
- tags: []
404
- Typewriter:
483
+ tags: []
484
+
485
+ - title: Typewriter
405
486
  home_url: https://github.com/alixedi/typewriter
406
487
  download_url: https://github.com/alixedi/typewriter/zipball/master
407
488
  demo_url: http://alixedi.github.io
408
489
  author: Ali Zaidi
409
490
  thumbnail: typewriter.png
410
491
  license: BSD
411
- tags: []
412
- Grid Gallery:
492
+ tags: []
493
+
494
+ - title: Grid Gallery
413
495
  home_url: https://github.com/nadjetey/GridGallery
414
496
  download_url: https://github.com/nadjetey/GridGallery/archive/master.zip
415
497
  demo_url: https://nadjetey.github.io/GridGallery
416
498
  author: Nii Adjetey Sowah
417
499
  thumbnail: gridgallery.png
418
500
  license: WTF
419
- tags: []
420
- White Paper:
501
+ tags: []
502
+
503
+ - title: White Paper
421
504
  home_url: https://github.com/vinitkumar/white-paper
422
505
  download_url: https://github.com/vinitkumar/white-paper/archive/v1.0.2.zip
423
506
  demo_url: http://vinitkumar.me/white-paper/
424
507
  author: Vinit Kumar
425
508
  thumbnail: white-paper.png
426
509
  license: MIT
427
- tags: []
428
- Bitwiser:
429
- demo_url: http://bitwiser.in/bitwiser/
430
- author: Brijesh Bittu
510
+ tags: []
511
+
512
+ - title: Bitwiser
513
+ github: brijeshb42/bitwiser
514
+ demo_url: http://bitwiser.in/bitwiser/
515
+ author: Brijesh Bittu
431
516
  thumbnail: bitwiser.png
432
- license: MIT
433
- tags: []
434
- home_url: https://github.com/brijeshb42/bitwiser
435
- download_url: https://github.com/brijeshb42/bitwiser/archive/master.zip
436
- Bitwiser Material:
437
- demo_url: http://bitwiser.in/bitwiser-material/
438
- author: Brijesh Bittu
517
+ license: MIT
518
+ tags: []
519
+
520
+ - title: Bitwiser Material
521
+ github: brijeshb42/bitwiser-material
522
+ branch: gh-pages
523
+ demo_url: http://bitwiser.in/bitwiser-material/
524
+ author: Brijesh Bittu
439
525
  thumbnail: bitwiser-material.png
440
- license: MIT
441
- tags: []
442
- home_url: https://github.com/brijeshb42/bitwiser-material
443
- download_url: https://github.com/brijeshb42/bitwiser-material/archive/gh-pages.zip
444
- Freelancer:
526
+ license: MIT
527
+ tags: []
528
+
529
+ - title: Freelancer
445
530
  home_url: https://github.com/jeromelachaud/freelancer-theme
446
531
  download_url: https://github.com/jeromelachaud/freelancer-theme/archive/master.zip
447
532
  demo_url: https://jeromelachaud.github.io/freelancer-theme
448
533
  author: Jerome Lachaud
449
534
  thumbnail: freelancer.png
450
535
  license: Apache
451
- tags: []
452
- Leap Day:
536
+ tags: []
537
+
538
+ - title: Leap Day
453
539
  home_url: https://github.com/mattgraham/Leap-Day
454
540
  download_url: https://github.com/mattgraham/Leap-Day/archive/master.zip
455
541
  demo_url: http://madebygraham.com/leapday/
456
542
  author: Matt Graham
457
543
  thumbnail: leap-day.png
458
544
  license: MIT
459
- tags: []
460
- Midnight:
545
+ tags: []
546
+
547
+ - title: Midnight
461
548
  home_url: https://github.com/mattgraham/midnight
462
549
  download_url: https://github.com/mattgraham/midnight/archive/master.zip
463
550
  demo_url: http://madebygraham.com/midnight/
464
551
  author: Matt Graham
465
552
  thumbnail: midnight.png
466
553
  license: MIT
467
- tags: []
468
- Metro:
554
+ tags: []
555
+
556
+
557
+ - title: Metro
469
558
  home_url: https://github.com/olakara/JekyllMetro
470
559
  download_url: https://github.com/olakara/JekyllMetro/archive/master.zip
471
560
  demo_url: http://abdelraoof.com
472
561
  author: Abdel Raoof Olakara
473
562
  thumbnail: jekyll-metro.png
474
563
  license: MIT
475
- tags: []
476
- Pixyll:
564
+ tags: []
565
+
566
+ - title: Pixyll
477
567
  home_url: https://github.com/johnotander/pixyll
478
568
  download_url: https://github.com/johnotander/pixyll/archive/master.zip
479
569
  demo_url: http://pixyll.com
480
570
  author: John Otander
481
571
  thumbnail: pixyll.png
482
572
  license: MIT
483
- tags: []
484
- Travelog:
573
+ tags: []
574
+
575
+ - title: Travelog
485
576
  home_url: https://github.com/rowanoulton/travelog-theme
486
577
  download_url: https://github.com/rowanoulton/travelog-theme/archive/master.zip
487
578
  author: Rowan Oulton
488
579
  thumbnail: travelog.png
489
580
  license: MIT
490
- tags: []
491
- Agency:
581
+ tags: []
582
+
583
+ - title: Agency
492
584
  home_url: https://github.com/y7kim/agency-jekyll-theme
493
585
  download_url: https://github.com/y7kim/agency-jekyll-theme/archive/gh-pages.zip
494
586
  demo_url: https://y7kim.github.io/agency-jekyll-theme
495
587
  author: Rick Kim
496
588
  thumbnail: agency.jpg
497
589
  license: Apache
498
- tags: []
499
- Solid:
590
+ tags: []
591
+
592
+ - title: Solid
500
593
  home_url: https://github.com/st4ple/solid-jekyll
501
594
  download_url: https://github.com/st4ple/solid-jekyll/archive/master.zip
502
595
  demo_url: http://st4ple.github.io/solid-jekyll/
503
596
  author: Oliver Stapleton
504
597
  thumbnail: solid.png
505
598
  license: Apache
506
- tags: []
507
- Clean:
599
+ tags: []
600
+
601
+ - title: Clean
508
602
  home_url: http://github.com/scotte/jekyll-clean
509
603
  download_url: https://github.com/scotte/jekyll-clean/zipball/gh-pages
510
604
  demo_url: http://scotte.github.io/jekyll-clean
511
605
  author: Scott Emmons
512
606
  thumbnail: jekyll-clean.png
513
607
  license: CC BY
514
- tags: []
515
- Clean Dark:
608
+ tags: []
609
+
610
+ - title: Clean Dark
516
611
  home_url: https://github.com/streetturtle/jekyll-clean-dark
517
612
  download_url: https://github.com/streetturtle/jekyll-clean-dark/archive/gh-pages.zip
518
613
  demo_url: http://pavelmakhov.com/jekyll-clean-dark/
519
614
  author: Pavel Makhov
520
615
  thumbnail: jekyll-clean-dark.png
521
616
  license: CC BY
522
- tags: []
523
- Mediator:
617
+ tags: []
618
+
619
+ - title: Mediator
524
620
  home_url: https://github.com/dirkfabisch/mediator
525
621
  download_url: https://github.com/dirkfabisch/mediator/archive/master.zip
526
622
  demo_url: http://blog.base68.com
527
623
  author: Dirk Fabisch
528
624
  thumbnail: mediator.png
529
625
  license: MIT
530
- tags: []
531
- Shiori:
626
+ tags: []
627
+
628
+ - title: Shiori
532
629
  home_url: https://github.com/ellekasai/shiori/
533
630
  download_url: https://github.com/ellekasai/shiori/archive/gh-pages.zip
534
631
  demo_url: http://ellekasai.github.io/shiori/
535
632
  author: Elle Kasai
536
633
  thumbnail: shiori.png
537
634
  license: MIT
538
- tags:
539
- - bootstrap
540
- Resume Cards:
635
+ tags: [bootstrap]
636
+
637
+ - title: Resume Cards
541
638
  home_url: https://github.com/ellekasai/resumecards/
542
639
  download_url: https://github.com/ellekasai/resumecards/archive/gh-pages.zip
543
640
  demo_url: http://ellekasai.github.io/resumecards/
544
641
  author: Elle Kasai
545
642
  thumbnail: resumecards.png
546
643
  license: MIT
547
- tags:
548
- - resume
549
- Harmony:
644
+ tags: [resume]
645
+
646
+
647
+ - title: Harmony
550
648
  home_url: https://github.com/gayanvirajith/harmony
551
649
  download_url: https://github.com/gayanvirajith/harmony/archive/master.zip
552
650
  demo_url: http://gayan.me/harmony/
553
651
  author: Gayan Virajith
554
652
  thumbnail: harmony.jpg
555
653
  license: MIT
556
- tags: []
557
- Contrast:
654
+ tags: []
655
+
656
+ - title: Contrast
558
657
  home_url: https://github.com/niklasbuschmann/contrast
559
658
  download_url: https://github.com/niklasbuschmann/contrast/archive/gh-pages.zip
560
659
  demo_url: http://niklasbuschmann.github.io/contrast
561
660
  author: Niklas Buschmann
562
661
  thumbnail: contrast.png
563
662
  license: MIT
564
- tags: []
565
- Single Paged:
663
+ tags: []
664
+
665
+ - title: Single Paged
566
666
  home_url: https://github.com/t413/SinglePaged
567
667
  download_url: https://github.com/t413/SinglePaged/archive/gh-pages.zip
568
668
  demo_url: http://t413.com/SinglePaged
569
669
  author: Tim O'Brien
570
670
  thumbnail: singlepaged.png
571
671
  license: MIT
572
- tags: []
573
- Clean Blog:
672
+ tags: []
673
+
674
+ - title: Clean Blog
574
675
  home_url: https://github.com/IronSummitMedia/startbootstrap-clean-blog-jekyll
575
676
  download_url: https://github.com/IronSummitMedia/startbootstrap-clean-blog-jekyll/archive/gh-pages.zip
576
677
  demo_url: http://ironsummitmedia.github.io/startbootstrap-clean-blog-jekyll/
577
678
  author: Start Bootstrap
578
679
  thumbnail: clean-blog.png
579
680
  license: Apache
580
- tags: []
581
- Landing Page:
681
+ tags: []
682
+
683
+ - title: Landing Page
582
684
  home_url: https://github.com/swcool/landing-page-theme
583
685
  download_url: https://github.com/swcool/landing-page-theme/archive/master.zip
584
686
  demo_url: http://shaneweng.com/landing-page-theme/
585
687
  author: Shane Weng
586
688
  thumbnail: landing-page.png
587
689
  license: Apache
588
- tags: []
589
- autm-rb:
690
+ tags: []
691
+
692
+ - title: autm-rb
590
693
  home_url: https://github.com/railsr/autm-rb
591
694
  download_url: https://github.com/railsr/autm-rb/archive/master.zip
592
695
  demo_url: http://railsr.github.io/autm-rb/
593
696
  author: Kirill Beletskiy
594
697
  thumbnail: autm-rb.png
595
698
  license: MIT
596
- tags: []
597
- Almace Scaffolding:
699
+ tags: []
700
+
701
+ - title: Almace Scaffolding
598
702
  home_url: https://github.com/sparanoid/almace-scaffolding
599
703
  download_url: https://github.com/sparanoid/almace-scaffolding/archive/master.zip
600
704
  demo_url: http://sparanoid.com/lab/amsf/
601
705
  author: Tunghsiao Liu
602
706
  thumbnail: almace.png
603
707
  license: MIT
604
- tags: []
605
- Masonry:
708
+ tags: []
709
+
710
+ - title: Masonry
606
711
  home_url: https://github.com/pasindud/jekyll-masonry
607
712
  download_url: https://github.com/pasindud/jekyll-masonry/archive/master.zip
608
713
  demo_url: http://pasindud.github.io/
609
714
  author: Pasindu De Silva
610
715
  thumbnail: masonry.jpg
611
- tags: []
612
- Strange Case:
716
+ tags: []
717
+
718
+ - title: Strange Case
613
719
  home_url: https://github.com/thephuse/strange_case
614
720
  download_url: https://github.com/thephuse/strange_case/archive/gh-pages.zip
615
721
  demo_url: http://thephuse.github.io/strange_case/
616
722
  author: Phuse
617
723
  thumbnail: strange-case.png
618
724
  license: MIT
619
- tags: []
620
- Open Theme:
725
+ tags: []
726
+
727
+
728
+ - title: Open Theme
621
729
  home_url: https://github.com/open-start/opentheme
622
730
  download_url: https://github.com/open-start/opentheme/archive/master.zip
623
731
  demo_url: http://opentheme.co/
624
732
  author: Manav Sehgal
625
733
  thumbnail: opentheme.png
626
734
  license: MIT
627
- tags: []
628
- Freshman 21:
735
+ tags: []
736
+
737
+ - title: Freshman 21
629
738
  home_url: https://github.com/yulijia/freshman21
630
739
  download_url: https://github.com/yulijia/freshman21/archive/master.zip
631
740
  demo_url: http://yulijia.net/freshman21/
632
741
  author: Lijia Yu
633
742
  thumbnail: freshman21.png
634
743
  license: MIT
635
- tags: []
636
- Uno Dbyll:
744
+ tags: []
745
+
746
+ - title: Uno Dbyll
637
747
  home_url: https://github.com/talk2ankan/uno-dbyll
638
748
  download_url: https://github.com/talk2ankan/uno-dbyll/archive/gh-pages.zip
639
749
  demo_url: http://blog.ankanbiswas.in/uno-dbyll/
640
750
  author: Ankan Biswas
641
751
  thumbnail: uno-dbyll.png
642
752
  license: MIT
643
- tags: []
644
- Minimal Block:
753
+ tags: []
754
+
755
+ - title: Minimal Block
645
756
  home_url: https://github.com/drvy/minimal-block
646
757
  download_url: https://github.com/drvy/minimal-block/archive/master.zip
647
758
  demo_url: http://blog.drvy.net/minimal-block/
648
759
  author: Dragomir Yordanov
649
760
  thumbnail: minimal-block.png
650
761
  license: MIT
651
- tags: []
652
- Compass:
762
+ tags: []
763
+
764
+ - title: Compass
653
765
  home_url: https://github.com/excentris/compass
654
766
  download_url: https://github.com/excentris/compass/archive/master.zip
655
767
  demo_url: http://excentris.github.io/compass/
656
768
  author: Eduardo Rubio
657
769
  thumbnail: compass.png
658
770
  license: MIT
659
- tags: []
660
- Type:
771
+ tags: []
772
+
773
+ - title: Type
661
774
  home_url: https://github.com/rohanchandra/type-theme
662
775
  download_url: https://github.com/rohanchandra/type-theme/archive/master.zip
663
776
  demo_url: https://rohanchandra.github.io/type-theme/
664
777
  author: Rohan Chandra
665
778
  thumbnail: type-theme.png
666
779
  license: MIT
667
- tags: []
668
- Gaya:
780
+ tags: []
781
+
782
+ - title: Gaya
669
783
  home_url: https://github.com/gayanvirajith/gaya
670
784
  download_url: https://github.com/gayanvirajith/gaya/archive/master.zip
671
785
  demo_url: http://gayan.me/gaya/
672
786
  author: Gayan Virajith
673
787
  thumbnail: gaya.jpg
674
788
  license: MIT
675
- tags: []
676
- Travelogue:
789
+ tags: []
790
+
791
+ - title: Travelogue
677
792
  home_url: https://github.com/SalGnt/Travelogue
678
793
  download_url: https://github.com/SalGnt/Travelogue/archive/master.zip
679
794
  demo_url: http://salgnt.github.io/Travelogue/
680
795
  author: Salvatore Gentile
681
796
  thumbnail: travelogue.png
682
797
  license: MIT
683
- tags: []
684
- Long Haul:
798
+ tags: []
799
+
800
+ - title: Long Haul
685
801
  home_url: https://github.com/brianmaierjr/long-haul
686
802
  download_url: https://github.com/brianmaierjr/long-haul/archive/master.zip
687
803
  demo_url: http://brianmaierjr.com/long-haul/
688
804
  author: Brian Maier Jr.
689
805
  thumbnail: long-haul.png
690
806
  license: MIT
691
- tags: []
692
- Qck:
807
+ tags: []
808
+
809
+ - title: Qck
693
810
  home_url: https://github.com/qckanemoto/jekyll-qck-theme
694
811
  download_url: https://github.com/qckanemoto/jekyll-qck-theme/archive/master.zip
695
812
  demo_url: http://qckanemoto.github.io/jekyll-qck-theme/
696
813
  author: Takashi Kanemoto
697
814
  thumbnail: qcktheme.png
698
815
  license: MIT
699
- tags: []
700
- Rifyll:
816
+ tags: []
817
+
818
+ - title: Rifyll
701
819
  home_url: https://github.com/itsrifat/rifyll
702
820
  download_url: https://github.com/itsrifat/rifyll/archive/master.zip
703
821
  demo_url: http://itsrifat.github.io/rifyll/
704
822
  author: Moinul
705
823
  thumbnail: rifyll.png
706
824
  license: MIT
707
- tags: []
708
- Grayscale:
825
+ tags: []
826
+
827
+ - title: Grayscale
709
828
  home_url: https://github.com/jeromelachaud/grayscale-theme
710
829
  download_url: https://github.com/jeromelachaud/grayscale-theme/archive/master.zip
711
830
  demo_url: https://jeromelachaud.github.io/grayscale-theme
712
831
  author: Jerome Lachaud
713
832
  thumbnail: grayscale.jpg
714
833
  license: Apache
715
- tags: []
716
- Metaphor:
834
+ tags: []
835
+
836
+ - title: Metaphor
717
837
  home_url: https://github.com/prio101/metaphor-jekyll
718
838
  download_url: https://github.com/prio101/metaphor-jekyll/archive/master.zip
719
839
  demo_url: http://mahabubislam.me
720
840
  author: Mahabub I.
721
841
  thumbnail: metaphor.png
722
842
  license: MIT
723
- tags: []
724
- Naringu:
843
+ tags: []
844
+
845
+ - title: Naringu
725
846
  home_url: https://github.com/ariestiyansyah/naringu
726
847
  download_url: https://github.com/ariestiyansyah/naringu/archive/master.zip
727
848
  demo_url: http://naringu.oonlab.com
728
849
  author: Rizky Ariestiyansyah
729
850
  thumbnail: naringu.png
730
851
  license: MIT
731
- tags: []
732
- Tufte:
852
+ tags: []
853
+
854
+ - title: Tufte
733
855
  home_url: https://github.com/clayh53/tufte-jekyll
734
856
  download_url: https://github.com/clayh53/tufte-jekyll/archive/master.zip
735
857
  demo_url: http://clayh53.github.io/tufte-jekyll/
736
858
  author: Clay Harmon
737
859
  thumbnail: tufte-jekyll.png
738
860
  license: MIT
739
- tags: []
740
- Feeling Responsive:
861
+ tags: []
862
+
863
+ - title: Feeling Responsive
741
864
  home_url: https://github.com/Phlow/feeling-responsive
742
865
  download_url: https://github.com/Phlow/feeling-responsive/archive/gh-pages.zip
743
866
  demo_url: http://phlow.github.io/feeling-responsive/
744
867
  author: Moritz »mo.« Sauer
745
868
  thumbnail: feeling-responsive.jpg
746
869
  license: MIT
747
- tags: []
748
- Emerald:
870
+ tags: []
871
+
872
+ - title: Emerald
749
873
  home_url: https://github.com/KingFelix/emerald
750
874
  download_url: https://github.com/KingFelix/emerald/archive/master.zip
751
875
  demo_url: http://www.jacoporabolini.com/emerald/
752
876
  author: Jacopo Rabolini
753
877
  thumbnail: emerald.png
754
878
  license: MIT
755
- tags: []
756
- Dev Aid:
879
+ tags: []
880
+
881
+ - title: Dev Aid
757
882
  home_url: https://github.com/kevit/devaid-jekyll-theme
758
883
  download_url: https://github.com/kevit/devaid-jekyll-theme/archive/master.zip
759
884
  demo_url: http://themes.3rdwavemedia.com/demo/devaid/
760
885
  author: Xiaoying Riley
761
886
  thumbnail: devaid.png
762
887
  license: CC BY
763
- tags: []
764
- One Page Wonder:
888
+ tags: []
889
+
890
+ - title: One Page Wonder
765
891
  home_url: https://github.com/mushishi78/one-page-wonder-jekyll
766
892
  download_url: https://github.com/mushishi78/one-page-wonder-jekyll/archive/gh-pages.zip
767
893
  demo_url: http://mushishi78.github.io/one-page-wonder-jekyll
768
894
  author: Max White
769
895
  thumbnail: one-page-wonder.jpg
770
896
  license: MIT
771
- tags: []
772
- Carte Noire:
897
+ tags: []
898
+
899
+ - title: Carte Noire
773
900
  home_url: https://github.com/jacobtomlinson/carte-noire
774
901
  download_url: https://github.com/jacobtomlinson/carte-noire/archive/gh-pages.zip
775
902
  demo_url: http://carte-noire.jacobtomlinson.co.uk/
776
903
  author: Jacob Tomlinson
777
904
  thumbnail: carte-noire.png
778
905
  license: GNU GPL
779
- tags: []
780
- Pithy:
906
+ tags: []
907
+
908
+ - title: Pithy
781
909
  home_url: https://github.com/smallmuou/Jekyll-Pithy
782
910
  download_url: https://github.com/smallmuou/Jekyll-Pithy/archive/master.zip
783
911
  demo_url: http://wenva.github.io/
784
912
  author: Pawpaw
785
913
  thumbnail: pithy.png
786
914
  license: MIT
787
- tags: []
788
- Twister:
915
+ tags: []
916
+
917
+ - title: Twister
789
918
  home_url: https://github.com/DigitalMindCH/twister
790
919
  download_url: http://digitalmind.ch/media/downloads/twister_theme.zip
791
920
  demo_url: http://digitalmind.ch/themes/twister-jekyll-theme/demo/
792
921
  author: Digitalmind
793
922
  thumbnail: twister.png
794
923
  license: MIT
795
- tags: []
796
- Black Doc:
924
+ tags: []
925
+
926
+ - title: Black Doc
797
927
  home_url: https://github.com/karloespiritu/BlackDoc
798
928
  download_url: https://github.com/karloespiritu/BlackDoc/archive/master.zip
799
929
  demo_url: http://karloespiritu.com/blackdoc
800
930
  author: Karlo Espiritu
801
931
  thumbnail: blackdoc.png
802
932
  license: MIT
803
- tags: []
804
- Polar Bear:
933
+ tags: []
934
+
935
+
936
+ - title: Polar Bear
805
937
  home_url: https://github.com/diezcami/polar-bear-theme/
806
938
  download_url: https://github.com/diezcami/polar-bear-theme/archive/master.zip
807
939
  demo_url: https://diezcami.github.io/polar-bear-theme
808
940
  author: Camille Diez
809
941
  thumbnail: polar-bear.png
810
942
  license: MIT
811
- tags: []
812
- Arctic Fox:
943
+ tags: []
944
+
945
+ - title: Arctic Fox
813
946
  home_url: https://github.com/diezcami/arctic-fox-theme/
814
947
  download_url: https://github.com/diezcami/arctic-fox-theme/archive/master.zip
815
948
  demo_url: https://diezcami.github.io/arctic-fox-theme
816
949
  author: Camille Diez
817
950
  thumbnail: arctic-fox.png
818
951
  license: MIT
819
- tags: []
820
- Cool Concise:
952
+ tags: []
953
+
954
+
955
+ - title: Cool Concise
821
956
  home_url: https://github.com/Gaohaoyang/gaohaoyang.github.io
822
957
  download_url: https://github.com/Gaohaoyang/gaohaoyang.github.io/archive/v1.1.zip
823
958
  demo_url: http://gaohaoyang.github.io/
824
959
  author: Gaohaoyang
825
960
  thumbnail: cool-concise-high-end.jpg
826
961
  license: MIT
827
- tags: []
828
- iCard Resume:
962
+ tags: []
963
+
964
+
965
+ - title: iCard Resume
829
966
  home_url: https://github.com/ddbullfrog/iCard-Resume
830
967
  download_url: https://github.com/ddbullfrog/iCard-Resume/archive/gh-pages.zip
831
968
  demo_url: http://ddbullfrog.github.io/iCard-Resume
832
969
  author: Dong Liang
833
970
  thumbnail: icard-resume.png
834
971
  license: MIT
835
- tags:
836
- - resume
837
- Kactus:
972
+ tags: [resume]
973
+
974
+ - title: Kactus
838
975
  home_url: https://github.com/nickbalestra/kactus
839
976
  download_url: https://github.com/nickbalestra/kactus/archive/master.zip
840
977
  demo_url: http://nick.balestra.ch/2015/Kactus/
841
978
  author: Nick Balestra
842
979
  thumbnail: kactus.png
843
980
  license: MIT
844
- tags: []
845
- Tiffany:
846
- home_url: https://github.com/dubuyuye/blog
847
- download_url: https://github.com/dubuyuye/blog/archive/gh-pages.zip
848
- demo_url: http://blog.rainynight.top
849
- author: RainyNight
981
+ tags: []
982
+
983
+
984
+ - title: Tiffany
985
+ home_url: https://github.com/dubuyuye/blog
986
+ download_url: https://github.com/dubuyuye/blog/archive/gh-pages.zip
987
+ demo_url: http://blog.rainynight.top
988
+ author: RainyNight
850
989
  thumbnail: tiffany.png
851
- license: MIT
852
- tags: []
853
- Centrarium:
854
- home_url: https://github.com/bencentra/centrarium
855
- download_url: https://github.com/bencentra/centrarium/archive/master.zip
856
- demo_url: http://bencentra.com/centrarium/
857
- author: Ben Centra
990
+ license: MIT
991
+ tags: []
992
+
993
+ - title: Centrarium
994
+ github: bencentra/centrarium
995
+ demo_url: http://bencentra.com/centrarium
996
+ author: Ben Centra
858
997
  thumbnail: centrarium.png
859
- license: MIT
860
- tags: []
861
- Mickey:
862
- demo_url: http://vincentchan.github.io/mickey
863
- author: Vincent Chan
998
+ license: MIT
999
+ tags: []
1000
+
1001
+ - title: Mickey
1002
+ github: vincentchan/mickey
1003
+ demo_url: http://vincentchan.github.io/mickey
1004
+ author: Vincent Chan
864
1005
  thumbnail: mickey.png
865
- license: MIT
866
- tags: []
867
- home_url: https://github.com/vincentchan/mickey
868
- download_url: https://github.com/vincentchan/mickey/archive/master.zip
869
- Resume:
870
- demo_url: http://resume-template.joelglovier.com
871
- author: Joel Glovier
1006
+ license: MIT
1007
+ tags: []
1008
+
1009
+ - title: Resume
1010
+ github: jglovier/resume-template
1011
+ branch: gh-pages
1012
+ demo_url: http://resume-template.joelglovier.com
1013
+ author: Joel Glovier
872
1014
  thumbnail: jglovier-resume.png
873
- license: MIT
874
- tags:
875
- - resume
876
- home_url: https://github.com/jglovier/resume-template
877
- download_url: https://github.com/jglovier/resume-template/archive/gh-pages.zip
1015
+ license: MIT
1016
+ tags: [resume]
1017
+
1018
+ - title: Video
1019
+ github: mushishi78/jekyll-video
1020
+ branch: gh-pages
1021
+ demo_url: http://mushishi78.github.io/jekyll-video
1022
+ thumbnail: jekyll-video.jpg
1023
+ author: Max White
1024
+ license: MIT
1025
+ tags: [video]
1026
+
1027
+ - title: Leonids
1028
+ github: renyuanz/leonids
1029
+ branch: gh-pages
1030
+ demo_url: http://renyuanz.github.io/leonids
1031
+ author: Renyuan Zou
1032
+ thumbnail: leonids.png
1033
+ license: MIT
1034
+ tags: []
1035
+