forked from drjekyllthemes/themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththemes.yml
1950 lines (1719 loc) · 56.4 KB
/
themes.yml
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
###############################
# Jekyll Themes
- name: Flexible Jekyll
github: artemsheludko/flexible-jekyll
demo_url: https://artemsheludko.github.io/flexible-jekyll/
thumbnail: flexible-jekyll.jpg
author: Artem Sheludko
license: GPL-3.0
tags: [simple, minimal, white, responsive, scss, clear, blog, pages]
- name: Adam Blog
github: artemsheludko/adam-blog
demo_url: https://artemsheludko.github.io/adam-blog/
thumbnail: adam-blog.jpg
author: Artem Sheludko
license: GPL-3.0
tags: [minimal, white, responsive, scss, clear, blog, pages]
- name: BEF
github: artemsheludko/bef
demo_url: https://artemsheludko.github.io/bef/
thumbnail: bef.jpg
author: Artem Sheludko
license: GPL-3.0
tags: [black, responsive, sass, travel, blog, pages]
- name: Hello, Jekyll!
series: Henry's
github: henrythemes/hello-jekyll-theme
demo_url: https://henrythemes.github.io/hello-jekyll-theme/
thumbnail: hello-jekyll.png
author: Gerald Bauer
license: Public Domain
tags: [white,starter]
- name: Hello, Minima!
series: Henry's
github: henrythemes/hello-minima-theme
demo_url: http://henrythemes.github.io/hello-minima-theme/
thumbnail: hello-minima.png
author: Gerald Bauer
license: Public Domain
tags: [white,starter,minima]
- name: Hello, Pages!
series: Henry's
github: henrythemes/hello-pages-theme-v2
demo_url: https://henrythemes.github.io/hello-pages-theme-v2/
thumbnail: hello-pages.png
author: Gerald Bauer
license: Public Domain
tags: [white,starter,pages]
- name: Henry's Starter (Minimal)
series: Henry's
github: henrythemes/jekyll-starter-theme
demo_url: http://henrythemes.github.io/jekyll-starter-theme/
thumbnail: henry-starter.png
author: Gerald Bauer
license: Public Domain
tags: [white,starter]
- name: Henry's Minimal
series: Henry's
github: henrythemes/jekyll-minimal-theme
demo_url: http://henrythemes.github.io/jekyll-minimal-theme/
thumbnail: henry-minimal.png
author: Gerald Bauer
license: Public Domain
tags: [white,minimal,starter]
- name: Henry's Bootstrap
series: Henry's
github: henrythemes/jekyll-bootstrap-theme
demo_url: http://henrythemes.github.io/jekyll-bootstrap-theme/
author: Gerald Bauer
thumbnail: henry-bootstrap.png
license: Public Domain
tags: [bootstrap, scss, white, starter]
- name: Henry's Classics Book
series: Henry's
github: henrythemes/jekyll-book-theme
demo_url: http://henrythemes.github.io/jekyll-book-theme/
author: Gerald Bauer
thumbnail: henry-book.png
license: Public Domain
tags: [books, white]
- name: Henry's Talks
series: Henry's
github: henrythemes/jekyll-talks-theme
demo_url: https://henrythemes.github.io/jekyll-talks-theme/
thumbnail: henry-talks.png
author: Gerald Bauer
license: Public Domain
tags: [white,talks,s6]
- name: Poole
series: Poole's
github: poole/poole
demo_url: http://demo.getpoole.com/
author: Mark Otto
thumbnail: poole.png
license: MIT
tags: [poole]
- name: Poole's Hyde
series: Poole's
github: poole/hyde
demo_url: http://hyde.getpoole.com/
author: Mark Otto
thumbnail: poole-hyde.png
license: MIT
tags: [poole]
- name: Poole's Lanyon
series: Poole's
github: poole/lanyon
demo_url: http://lanyon.getpoole.com/
author: Mark Otto
thumbnail: poole-lanyon.png
license: MIT
tags: [poole]
- name: Minima (Built-in v3.2+ Default)
github: jekyll/minima
## demo_url: ???
thumbnail: minima.png
author: Joel Glovier et al
license: MIT
gem: minima
tags: [github]
- name: Resume
github: jglovier/resume-template
branch: gh-pages
demo_url: http://resume-template.joelglovier.com
author: Joel Glovier
thumbnail: jglovier-resume.png
license: MIT
tags: [resume]
- name: Architect (Pages)
series: Pages
github: pages-themes/architect
demo_url: https://pages-themes.github.io/architect
thumbnail: pages-architect.png
author: Jason Long et al
gem: jekyll-theme-architect
license: CC0 - Public Domain
tags: [github]
- name: Cayman (Pages)
series: Pages
github: pages-themes/cayman
demo_url: https://pages-themes.github.io/cayman/
thumbnail: pages-cayman.png
author: Jason Long et al
gem: jekyll-theme-cayman
license: CC0 - Public Domain
tags: [github]
- name: Tactile (Pages)
series: Pages
github: pages-themes/tactile
demo_url: https://pages-themes.github.io/tactile/
thumbnail: pages-tactile.png
author: Jason Long et al
gem: jekyll-theme-tactile
license: CC0 - Public Domain
tags: [github]
- name: Dinky (Pages)
series: Pages
github: pages-themes/dinky
demo_url: https://pages-themes.github.io/dinky/
thumbnail: pages-dinky.png
author: Diana Mounter et al
gem: jekyll-theme-dinky
license: CC0 - Public Domain
tags: [github]
- name: Hacker (Pages)
series: Pages
github: pages-themes/hacker
demo_url: https://pages-themes.github.io/hacker/
thumbnail: pages-hacker.png
author: Jason Costello et al
gem: jekyll-theme-hacker
license: CC0 - Public Domain
tags: [github,black]
- name: Slate (Pages)
series: Pages
github: pages-themes/slate
demo_url: https://pages-themes.github.io/slate/
thumbnail: pages-slate.png
author: Jason Costello et al
gem: jekyll-theme-slate
license: CC0 - Public Domain
tags: [github]
- name: Merlot (Pages)
series: Pages
github: pages-themes/merlot
demo_url: https://pages-themes.github.io/merlot/
thumbnail: pages-merlot.png
author: Cameron McEfee et al
gem: jekyll-theme-merlot
license: CC0 - Public Domain
tags: [github]
- name: Midnight (Pages)
series: Pages
github: pages-themes/midnight
demo_url: https://pages-themes.github.io/midnight/
thumbnail: pages-midnight.png
author: Matt Graham et al
gem: jekyll-theme-midnight
license: CC0 - Public Domain
tags: [github,black]
- name: Leap Day (Pages)
series: Pages
github: pages-themes/leap-day
demo_url: https://pages-themes.github.io/leap-day/
thumbnail: pages-leapday.png
author: Matt Graham et al
gem: jekyll-theme-leap-day
license: CC0 - Public Domain
tags: [github]
- name: Minimal (Pages)
series: Pages
github: pages-themes/minimal
demo_url: https://pages-themes.github.io/minimal/
thumbnail: pages-minimal.png
author: Steve Smith et al
gem: jekyll-theme-minimal
license: CC0 - Public Domain
tags: [github]
- name: Modernist (Pages)
series: Pages
github: pages-themes/modernist
demo_url: https://pages-themes.github.io/modernist/
thumbnail: pages-modernist.png
author: Steve Smith et al
gem: jekyll-theme-modernist
license: CC0 - Public Domain
tags: [github]
- name: Time Machine (Pages)
series: Pages
github: pages-themes/time-machine
demo_url: https://pages-themes.github.io/time-machine/
thumbnail: pages-timemachine.png
author: Jon Rohan et al
gem: jekyll-theme-time-machine
license: CC0 - Public Domain
tags: [github]
- name: Now
github: barryclark/jekyll-now
demo_url: http://www.jekyllnow.com/
author: Barry Clark
thumbnail: jekyll-now.png
license: MIT
tags: []
- name: Beautiful
github: daattali/beautiful-jekyll
demo_url: http://deanattali.com/beautiful-jekyll/
author: Dean Attali
thumbnail: beautiful-jekyll.png
license: MIT
tags: []
- name: Holo Alfa
github: steinvc/holo-alfa
branch: gh-pages
demo_url: http://steinvc.github.io/holo-alfa/
author: Stijn van Cuijk
thumbnail: holo-alfa.png
license: MIT
tags: []
- name: "{ Personal }"
github: PanosSakkos/personal-jekyll-theme
demo_url: http://panossakkos.github.io/personal-jekyll-theme/
author: Panos Sakkos
thumbnail: personal.jpg
license: MIT
tags: [timeline]
- name: Material Design Lite (MDL)
home_url: https://github.com/gdg-managua/jekyll-mdl
download_url: https://github.com/gdg-managua/jekyll-mdl/releases
demo_url: http://www.gdgmanagua.org/jekyll-mdl
author: Oscar Cortez et al
## org: Google Developers Group (GDG) Managua
thumbnail: jekyll-mdl-screen.jpg
license: Apache
tags: []
- name: Scribble
home_url: https://github.com/muan/scribble
download_url: https://github.com/muan/scribble/archive/master.zip
demo_url: http://scribble.muan.co/2013/05/06/scribble-the-jekyll-theme/
author: Mu-An Chiou
thumbnail: scribble.png
license: MIT
tags: []
- name: Basically Basic
github: mmistakes/jekyll-theme-basically-basic
demo_url: https://mmistakes.github.io/jekyll-theme-basically-basic
author: Michael Rose
gem: jekyll-theme-basically-basic
thumbnail: basicallybasic.png
license: MIT
tags: [minimal, responsive, blog, resume]
- name: Minimal Mistakes
github: mmistakes/minimal-mistakes
demo_url: https://mmistakes.github.io/minimal-mistakes/
author: Michael Rose
gem: minimal-mistakes-jekyll
thumbnail: minimal-mistakes.png
license: MIT
tags: [minimal, responsive, blog, portfolio, archive-pages]
- name: So Simple
github: mmistakes/so-simple-theme
demo_url: http://mmistakes.github.io/so-simple-theme/
author: Michael Rose
thumbnail: so-simple.png
license: MIT
tags: []
- name: Skinny Bones
github: mmistakes/skinny-bones-jekyll
demo_url: http://mmistakes.github.io/skinny-bones-jekyll/
author: Michael Rose
thumbnail: skinny-bones.gif
license: MIT
tags: []
- name: HiPSTeR (HPSTR)
github: mmistakes/hpstr-jekyll-theme
demo_url: http://mmistakes.github.io/hpstr-jekyll-theme/
author: Michael Rose
thumbnail: hpstr.png
license: MIT
tags: []
- name: Academic Pages
github: academicpages/academicpages.github.io
demo_url: https://academicpages.github.io
author: Stuart Geiger
thumbnail: academicpages.png
license: MIT
tags: [academic, portfolio, papers, blog, resume, responsive]
- name: U.S. (Gov) Web Design Standards (Docs, Landing)
github: 18F/uswds-jekyll
## demo_url: https://standards.usa.gov/page-templates
author: Shawn Allen
thumbnail: uswds-docs.png
license: Public Domain
tags: [docs, landing]
- name: Balzac
home_url: https://github.com/coletownsend/balzac-for-jekyll
download_url: https://github.com/coletownsend/balzac-for-jekyll/archive/master.zip
demo_url: http://jekyll.gtat.me
author: Cole Townsend
thumbnail: balzac.jpg
license: MIT
tags: []
- name: Lagom
github: swanson/lagom
demo_url: http://lagom.mdswanson.com
author: Matt Swanson
thumbnail: lagom.png
license: MIT
tags: []
- name: Dbyll
home_url: https://github.com/dbtek/dbyll
download_url: https://github.com/dbtek/dbyll/archive/master.zip
demo_url: http://dbtek.github.io/dbyll/
author: Ismail Demirbilek
thumbnail: dbyll.png
license: MIT
tags: []
- name: Uno Dbyll
home_url: https://github.com/meliodus/uno-dbyll
download_url: https://github.com/meliodus/uno-dbyll/archive/gh-pages.zip
demo_url: http://meliodus.github.io/uno-dbyll/
author: Ankan Biswas
thumbnail: uno-dbyll.png
license: MIT
tags: []
- name: Kasper
home_url: https://github.com/rosario/kasper
download_url: https://github.com/rosario/kasper/archive/master.zip
demo_url: http://rosario.io/2013/11/10/kasper-theme-for-jekyll.html
author: Rosario Rascuna
thumbnail: kasper.png
license: MIT
tags: []
- name: Swift
home_url: https://github.com/pranavrajs/swift
download_url: https://github.com/pranavrajs/swift/archive/master.zip
demo_url: https://pranavrajs.github.io/swift/
author: Pranav Raj S
thumbnail: swift.png
license: MIT
tags: []
- name: Flex
home_url: https://github.com/the-development/flex
download_url: https://github.com/the-development/flex/archive/master.zip
demo_url: http://the-development.github.io/flex
author: Jeff Martin
thumbnail: flex.png
license: MIT
tags: []
- name: H M Faysal's Omega
home_url: https://github.com/hmfaysal/hmfaysal-omega-theme
download_url: https://github.com/hmfaysal/hmfaysal-omega-theme/archive/gh-pages.zip
demo_url: http://hmfaysal.github.io/hmfaysal-omega-theme/
author: Hossain Mohd Faysal
thumbnail: hmfaysal-omega.jpg
license: MIT
tags: []
- name: H M Faysal's Notepad
home_url: https://github.com/hmfaysal/Notepad
download_url: https://github.com/hmfaysal/Notepad/archive/gh-pages.zip
demo_url: http://hmfaysal.github.io/Notepad/
author: Hossain Mohd Faysal
thumbnail: hmfaysal-notepad.png
license: MIT
tags: []
- name: Herring Cove
home_url: https://github.com/arnp/herring-cove
download_url: https://github.com/arnp/herring-cove/archive/master.zip
author: Ravi Patel
thumbnail: herring-cove.jpg
license: MIT
tags: []
- name: Red Cup
github: ajthewebdev/redcup
## demo_url: http://ajthewebdev.github.io/redcup/
author: Nii Adjetey Sowah
thumbnail: redcup.png
license: CC BY
tags: []
- name: Wangana
github: ajthewebdev/wangana
## demo_url: http://iamnii.github.io/
author: Nii Adjetey Sowah
thumbnail: wangana.png
license: MIT
tags: []
- name: Grid Gallery
github: ajthewebdev/GridGallery
## demo_url: https://iamnii.github.io/GridGallery
author: Nii Adjetey Sowah
thumbnail: gridgallery.png
license: WTF
tags: []
- name: Solo ## (single-page)
home_url: http://github.com/chibicode/solo
download_url: http://github.com/chibicode/solo/archive/master.zip
demo_url: http://chibicode.github.io/solo
author: Shu Uesugi
thumbnail: solo.png
license: MIT
tags: []
- name: Thinny
home_url: https://github.com/camporez/Thinny
download_url: https://github.com/camporez/Thinny/releases/latest
demo_url: http://camporez.github.io/blog/thinny-2/
author: Ian Camporez Brunelli
thumbnail: thinny.png
license: MIT
tags: []
- name: Hikari
home_url: https://github.com/mx3m/hikari-for-Jekyll
download_url: https://github.com/mx3m/hikari-for-Jekyll/archive/master.zip
demo_url: http://mx3m.github.io/hikari-for-Jekyll/
author: Mathieu Mayer-Mazzoli
thumbnail: hikari.png
license: MIT
tags: []
- name: Brume
home_url: https://github.com/aigarsdz/brume
download_url: https://github.com/aigarsdz/brume/archive/master.zip
demo_url: http://aigarsdz.github.io/brume
author: Aigars Dzerviniks
thumbnail: brume.png
license: MIT
tags: []
- name: Incorporated
home_url: https://github.com/kippt/jekyll-incorporated
download_url: https://github.com/kippt/jekyll-incorporated/archive/master.zip
demo_url: http://blog.sendtoinc.com/
author: Karri Saarinen et al
## org: Kippt Inc.
## note: kippt is closed-down (out-of-business)
thumbnail: incorporated.png
license: MIT
tags: []
- name: Gereksiz
home_url: https://github.com/bozbalci/gereksiz
download_url: https://github.com/bozbalci/gereksiz/archive/master.zip
author: Berk Özbalcı
thumbnail: gereksiz.png
license: BSD
tags: []
- name: Simpleyyt
home_url: https://github.com/Simpleyyt/simpleyyt.github.io
download_url: https://github.com/Simpleyyt/simpleyyt.github.io/archive/master.zip
demo_url: http://simpleyyt.github.io/
author: Yitao Yao
thumbnail: simpleyyt.png
license: MIT
tags: []
- name: Noita
home_url: https://github.com/penibelst/jekyll-noita
download_url: https://github.com/penibelst/jekyll-noita/archive/gh-pages.zip
demo_url: http://noita.penibelst.de/
author: Anatol Broder
thumbnail: noita.png
license: MIT
tags: []
- name: Lucas' Library
github: SpaceG/Library
## demo_url: http://www.lucasgatsas.ch
author: Lucas Gatsas
thumbnail: cleanmagicmedium.png
license: Apache
tags: []
## fix/todo: rename thubnmail to library too
- name: Lucas' Glas
github: SpaceG/glas
## demo_url: http://lucasgatsas.ch
author: Lucas Gatsas
thumbnail: ice-and-fire.png
license: Apache
tags: []
## fix/todo: rename thubnmail to glas too
- name: Exemplar
github: tybenz/exemplar
demo_url: http://exemplar.tybenz.com
author: Tyler Benziger
thumbnail: exemplar.png
license: MIT
tags: []
- name: Otter Pop
github: tybenz/otter-pop
branch: gh-pages
demo_url: http://tybenz.com/otter-pop
author: Tyler Benziger
thumbnail: otter-pop.png
license: MIT
tags: []
- name: Block Log
home_url: https://github.com/anandubajith/block-log
download_url: https://github.com/anandubajith/block-log/archive/master.zip
demo_url: http://anandu.net/demo/block-log/
author: Anandu B Ajith
thumbnail: block-log.png
license: MIT
tags: []
- name: Typewriter
home_url: https://github.com/alixedi/typewriter
download_url: https://github.com/alixedi/typewriter/zipball/master
demo_url: http://alixedi.github.io
author: Ali Zaidi
thumbnail: typewriter.png
license: BSD
tags: []
- name: White Paper
github: vinitkumar/white-paper
branch: gh-pages
demo_url: http://vinitkumar.me/white-paper
thumbnail: white-paper.png
author: Vinit Kumar
license: MIT
tags: [simple, developer, clean]
- name: Bitwiser
github: brijeshb42/bitwiser
demo_url: http://bitwiser.in/bitwiser/
author: Brijesh Bittu
thumbnail: bitwiser.png
license: MIT
tags: []
- name: Bitwiser Material
github: brijeshb42/bitwiser-material
branch: gh-pages
demo_url: http://bitwiser.in/bitwiser-material/
author: Brijesh Bittu
thumbnail: bitwiser-material.png
license: MIT
tags: []
- name: Freelancer
github: jeromelachaud/freelancer-theme
demo_url: https://jeromelachaud.github.io/freelancer-theme
author: Jerome Lachaud
thumbnail: freelancer.png
license: Apache
tags: []
- name: Grayscale
github: jeromelachaud/grayscale-theme
demo_url: https://jeromelachaud.github.io/grayscale-theme
author: Jerome Lachaud
thumbnail: grayscale.jpg
license: Apache
tags: []
- name: Metro
home_url: https://github.com/olakara/JekyllMetro
download_url: https://github.com/olakara/JekyllMetro/archive/master.zip
demo_url: http://abdelraoof.com
author: Abdel Raoof Olakara
thumbnail: jekyll-metro.png
license: MIT
tags: []
- name: Pixyll
home_url: https://github.com/johnotander/pixyll
download_url: https://github.com/johnotander/pixyll/archive/master.zip
demo_url: http://pixyll.com
author: John Otander
thumbnail: pixyll.png
license: MIT
tags: []
- name: Travelog
home_url: https://github.com/rowanoulton/travelog-theme
download_url: https://github.com/rowanoulton/travelog-theme/archive/master.zip
author: Rowan Oulton
thumbnail: travelog.png
license: MIT
tags: []
- name: Agency
home_url: https://github.com/y7kim/agency-jekyll-theme
download_url: https://github.com/y7kim/agency-jekyll-theme/archive/gh-pages.zip
demo_url: https://y7kim.github.io/agency-jekyll-theme
author: Rick Kim
thumbnail: agency.jpg
license: Apache
tags: []
- name: Solid
home_url: https://github.com/st4ple/solid-jekyll
download_url: https://github.com/st4ple/solid-jekyll/archive/master.zip
demo_url: http://st4ple.github.io/solid-jekyll/
author: Oliver Stapleton
thumbnail: solid.png
license: Apache
tags: []
- name: Clean
home_url: http://github.com/scotte/jekyll-clean
download_url: https://github.com/scotte/jekyll-clean/zipball/gh-pages
demo_url: http://scotte.github.io/jekyll-clean
author: Scott Emmons
thumbnail: jekyll-clean.png
license: CC BY
tags: []
- name: Clean Dark
home_url: https://github.com/streetturtle/jekyll-clean-dark
download_url: https://github.com/streetturtle/jekyll-clean-dark/archive/gh-pages.zip
demo_url: http://pavelmakhov.com/jekyll-clean-dark/
author: Pavel Makhov
thumbnail: jekyll-clean-dark.png
license: CC BY
tags: []
- name: Curriculum Vitae (CV) Crafter
home_url: https://github.com/streetturtle/jekyll-cv-crafter
download_url: https://github.com/streetturtle/jekyll-cv-crafter/archive/gh-pages.zip
demo_url: http://pavelmakhov.com/jekyll-cv-crafter/
author: Pavel Makhov
thumbnail: jekyll-cv-crafter.png
license: MIT
tags: [cv, resume]
- name: Mediator
home_url: https://github.com/dirkfabisch/mediator
download_url: https://github.com/dirkfabisch/mediator/archive/master.zip
demo_url: http://blog.base68.com
author: Dirk Fabisch
thumbnail: mediator.png
license: MIT
tags: []
- name: Shiori
home_url: https://github.com/ellekasai/shiori
download_url: https://github.com/ellekasai/shiori/archive/gh-pages.zip
demo_url: http://ellekasai.github.io/shiori/
author: Elle Kasai
thumbnail: shiori.png
license: MIT
tags: [bootstrap]
- name: Resume Cards
home_url: https://github.com/ellekasai/resumecards
download_url: https://github.com/ellekasai/resumecards/archive/gh-pages.zip
demo_url: http://ellekasai.github.io/resumecards/
author: Elle Kasai
thumbnail: resumecards.png
license: MIT
tags: [resume]
- name: Contrast
home_url: https://github.com/niklasbuschmann/contrast
download_url: https://github.com/niklasbuschmann/contrast/archive/gh-pages.zip
demo_url: http://niklasbuschmann.github.io/contrast
author: Niklas Buschmann
thumbnail: contrast.png
license: MIT
tags: []
- name: Single Paged
home_url: https://github.com/t413/SinglePaged
download_url: https://github.com/t413/SinglePaged/archive/gh-pages.zip
demo_url: http://t413.com/SinglePaged
author: Tim O'Brien
thumbnail: singlepaged.png
license: MIT
tags: []
- name: Clean Blog
home_url: https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll
download_url: https://github.com/BlackrockDigital/startbootstrap-clean-blog-jekyll/archive/gh-pages.zip
demo_url: http://BlackrockDigital.github.io/startbootstrap-clean-blog-jekyll/
author: David Miller et al
## org:: Start Bootstrap
thumbnail: clean-blog.png
license: Apache
tags: []
- name: Landing Page
home_url: https://github.com/swcool/landing-page-theme
download_url: https://github.com/swcool/landing-page-theme/archive/master.zip
demo_url: http://shaneweng.com/landing-page-theme/
author: Shane Weng
thumbnail: landing-page.png
license: Apache
tags: []
- name: Autm.rb
github: kirqe/autm-rb
demo_url: http://kirqe.github.io/autm-rb
author: Kirill Beletskiy
thumbnail: autm-rb.png
license: MIT
tags: []
- name: Almace Scaffolding
home_url: https://github.com/sparanoid/almace-scaffolding
download_url: https://github.com/sparanoid/almace-scaffolding/archive/master.zip
demo_url: http://sparanoid.com/lab/amsf/
author: Tunghsiao Liu
thumbnail: almace.png
license: MIT
tags: []
- name: Masonry
home_url: https://github.com/pasindud/jekyll-masonry
download_url: https://github.com/pasindud/jekyll-masonry/archive/master.zip
demo_url: http://pasindud.github.io/
author: Pasindu De Silva
thumbnail: masonry.jpg
tags: []
- name: Strange Case
home_url: https://github.com/thephuse/strange_case
download_url: https://github.com/thephuse/strange_case/archive/gh-pages.zip
demo_url: http://thephuse.github.io/strange_case/
author: Kelley Gibson et al
## org: Phuse
thumbnail: strange-case.png
license: MIT
tags: []
- name: Open Theme
home_url: https://github.com/manavsehgal/opentheme
download_url: https://github.com/manavsehgal/opentheme/archive/master.zip
demo_url: http://opentheme.co/
author: Manav Sehgal
thumbnail: opentheme.png
license: MIT
tags: []
- name: Freshman 21
home_url: https://github.com/yulijia/freshman21
download_url: https://github.com/yulijia/freshman21/archive/master.zip
demo_url: http://yulijia.net/freshman21/
author: Lijia Yu
thumbnail: freshman21.png
license: MIT
tags: []
- name: Minimal Block
home_url: https://github.com/drvy/minimal-block
download_url: https://github.com/drvy/minimal-block/archive/master.zip
demo_url: http://blog.drvy.net/minimal-block/
author: Dragomir Yordanov
thumbnail: minimal-block.png
license: MIT
tags: []
- name: Compass
home_url: https://github.com/excentris/compass
download_url: https://github.com/excentris/compass/archive/master.zip
demo_url: http://excentris.github.io/compass/
author: Eduardo Rubio
thumbnail: compass.png
license: MIT
tags: []
- name: Type
home_url: https://github.com/rohanchandra/type-theme
download_url: https://github.com/rohanchandra/type-theme/archive/master.zip
demo_url: https://rohanchandra.github.io/type-theme/
author: Rohan Chandra
thumbnail: type-theme.png
license: MIT
tags: []
- name: Gaya
github: gayanvirajith/gaya
demo_url: http://gayan.me/gaya/
author: Gayan Virajith
thumbnail: gaya.jpg
license: MIT
tags: []
- name: Harmony
github: gayanvirajith/harmony
demo_url: http://gayan.me/harmony/
author: Gayan Virajith
thumbnail: harmony.jpg
license: MIT
tags: []
- name: Travelogue
home_url: https://github.com/SalGnt/Travelogue
download_url: https://github.com/SalGnt/Travelogue/archive/master.zip
demo_url: http://salgnt.github.io/Travelogue/
author: Salvatore Gentile
thumbnail: travelogue.png
license: MIT
tags: []
- name: Long Haul
home_url: https://github.com/brianmaierjr/long-haul
download_url: https://github.com/brianmaierjr/long-haul/archive/master.zip
demo_url: http://brianmaierjr.com/long-haul/
author: Brian Maier Jr.
thumbnail: long-haul.png
license: MIT
tags: []
- name: Ttskch
home_url: https://github.com/ttskch/jekyll-ttskch-theme
download_url: https://github.com/ttskch/jekyll-ttskch-theme/archive/master.zip
demo_url: http://ttskch.github.io/jekyll-ttskch-theme/
author: Takashi Kanemoto
thumbnail: qcktheme.png
license: MIT
tags: []
- name: Rifyll
home_url: https://github.com/itsrifat/rifyll
download_url: https://github.com/itsrifat/rifyll/archive/master.zip
demo_url: http://itsrifat.github.io/rifyll/
author: Moinul Hossain
thumbnail: rifyll.png
license: MIT
tags: []
- name: Metaphor
home_url: https://github.com/prio101/metaphor-jekyll
download_url: https://github.com/prio101/metaphor-jekyll/archive/master.zip
demo_url: http://mahabubislam.me
author: Mahabub Islam Prio
thumbnail: metaphor.png
license: MIT
tags: []
- name: Naringu
home_url: https://github.com/ariestiyansyah/naringu
download_url: https://github.com/ariestiyansyah/naringu/archive/master.zip
demo_url: http://naringu.oonlab.com
author: Rizky Ariestiyansyah
thumbnail: naringu.png
license: MIT
tags: []
- name: Tufte
home_url: https://github.com/clayh53/tufte-jekyll
download_url: https://github.com/clayh53/tufte-jekyll/archive/master.zip
demo_url: http://clayh53.github.io/tufte-jekyll/
author: Clay Harmon
thumbnail: tufte-jekyll.png
license: MIT
tags: []
- name: Feeling Responsive
github: Phlow/feeling-responsive
branch: gh-pages
demo_url: http://phlow.github.io/feeling-responsive/
author: Moritz Sauer # fix - add back »mo.« gets mangled
thumbnail: feeling-responsive.jpg
license: MIT
tags: []
- name: Emerald
home_url: https://github.com/KingFelix/emerald
download_url: https://github.com/KingFelix/emerald/archive/master.zip
demo_url: http://www.jacoporabolini.com/emerald/
author: Jacopo Rabolini
thumbnail: emerald.png
license: MIT
tags: []
- name: Dev Aid
github: kevit/devaid-jekyll-theme
demo_url: http://themes.3rdwavemedia.com/demo/devaid/
author: Sergey Karatkevich
thumbnail: devaid.png
license: CC BY
tags: []
## Dev Aid based on
## todo/add -> based on Dev Aid by Xiaoying Riley
- name: Carte Noire
home_url: https://github.com/jacobtomlinson/carte-noire
download_url: https://github.com/jacobtomlinson/carte-noire/archive/gh-pages.zip
demo_url: http://carte-noire.jacobtomlinson.co.uk/
author: Jacob Tomlinson
thumbnail: carte-noire.png
license: GNU GPL
tags: []
- name: Twister
home_url: https://github.com/DigitalMindCH/twister-jekyll-theme
download_url: http://digitalmind.ch/media/downloads/twister_theme.zip
demo_url: http://digitalmind.ch/themes/twister-jekyll-theme/demo/
author: Daniel Baur et al
## org: Digitalmind
thumbnail: twister.png
license: MIT
tags: []