-
Notifications
You must be signed in to change notification settings - Fork 183
/
templates.js
1465 lines (1465 loc) · 75.8 KB
/
templates.js
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
module.exports =
[
{
id:"101004",
name:"Basic",
title:"Basic",
short:"The simple vanilla template",
full:"Looking for a basic vanilla starter template for Bootstrap? This is the defacto starter template for Bootstrap 3 that includes a top navigation bar and centered block.",
tags:["basic","starter","empty"],
imgUrl:"http://www.bootply.com/assets/templates/101004.png",
downloadUrl:"http://www.bootply.com/download/101004",
sourceUrl:"http://www.bootply.com/101004",
previewUrl:"http://www.bootply.com/render/101004",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"100993",
name:"Sidebar",
title:"Sidebar",
short:"Popular left sidebar layout",
full:"This is a popular 2 column template for Bootstrap 3 that includes a left-side 33% width column, and 66% width content area.",
tags:["sidebar","starter"],
imgUrl:"http://www.bootply.com/assets/templates/100993.png",
downloadUrl:"http://www.bootply.com/download/100993",
sourceUrl:"http://www.bootply.com/100993",
previewUrl:"http://www.bootply.com/render/100993",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"94967",
name:"FixedWidth",
title:"Fixed Width",
short:"Pixel-based container layout",
full:"Bootstrap out-of-the-box uses a fluid or percentage-based container. Using a simple wrapper DIV you can easily create a fixed width (pixel-based) container as this template does.",
tags:["starter","fixed","width"],
imgUrl:"http://www.bootply.com/assets/templates/94967.png",
downloadUrl:"http://www.bootply.com/download/94967",
sourceUrl:"http://www.bootply.com/94967",
previewUrl:"http://www.bootply.com/render/94967",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"75225",
name:"Fixed Navbar",
title:"Fixed Navbar",
short:"Sticky top nav template",
full:"A Basic Bootstrap template with fluid width and sticky top navigation.",
tags:["starter","fixed","sticky","header","navbar"],
imgUrl:"http://www.bootply.com/assets/templates/75225.png",
downloadUrl:"http://www.bootply.com/download/75225",
sourceUrl:"http://www.bootply.com/75225",
previewUrl:"http://www.bootply.com/render/75225",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"75231",
name:"Sticky Footer",
title:"Sticky Footer",
short:"Footer always pushed to the bottom",
full:"A simple Bootstrap template with a sticky footer that always stays on the bottom regardless of page content.",
tags:["starter","fixed","sticky","footer"],
imgUrl:"http://www.bootply.com/assets/templates/75231.png",
downloadUrl:"http://www.bootply.com/download/75231",
sourceUrl:"http://www.bootply.com/75231",
previewUrl:"http://www.bootply.com/render/75231",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"73778",
name:"Grid",
title:"Grid",
short:"Uses the powerful Bootstrap grid",
full:"This template uses multiple grid columns and widths. Use this example to see how to control the Bootstrap grid behavior and breakpoints on different devices you can combine the large, small or tiny grid sizes. Use combinations of .col-xs-*, .col-sm-* and .col-lg-* to manipulate the horizontal and vertical display of elements on multiple devices.",
tags:["starter","grid","responsive","stacking","collapse","mobile"],
imgUrl:"http://www.bootply.com/assets/templates/73778.png",
downloadUrl:"http://www.bootply.com/download/73778",
sourceUrl:"http://www.bootply.com/73778",
previewUrl:"http://www.bootply.com/render/73778",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"100983",
name:"Affix Sidebar",
title:"Affix Sidebar",
short:"Sidebar like the Bootstrap docs",
full:"Similar to the Bootstrap documentation, this template features a left-side nav that attaches once scrolling goes beyond a large top header with ad space.",
tags:["starter","fixed","affix","sidebar","pin","scroll","scrollspy"],
imgUrl:"http://www.bootply.com/assets/templates/100983.png",
downloadUrl:"http://www.bootply.com/download/100983",
sourceUrl:"http://www.bootply.com/100983",
previewUrl:"http://www.bootply.com/render/100983",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"65566",
name:"Full Example",
title:"Full Example",
short:"A complete Bootstrap template",
full:"A Bootstrap template that exemplifies the Bootstrap CSS and many Bootstrap components such as buttons, tabs, panels, progress bars, pagination, labels and breadcrumbs.<p>This template makes a great Bootstrap test page for demonstration of CSS, elements and components.</p>",
tags:["starter","example","complete","tabs","panel","progress","buttons","label","context"],
imgUrl:"http://www.bootply.com/assets/templates/65566.png",
downloadUrl:"http://www.bootply.com/download/65566",
sourceUrl:"http://www.bootply.com/65566",
previewUrl:"http://www.bootply.com/render/65566",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"101053",
name:"Complex Navbar",
title:"Complex Navbar",
short:"Nav with buttons, text and form",
full:"This Bootstrap layout will show you how to create a fixed top navbar with dropdowns, buttons, text and right-aligned search form.",
tags:["starter","right","icon","navbar","search","form"],
imgUrl:"http://www.bootply.com/assets/templates/101053.png",
downloadUrl:"http://www.bootply.com/download/101053",
sourceUrl:"http://www.bootply.com/101053",
previewUrl:"http://www.bootply.com/render/101053",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"88026",
name:"OffCanvas",
title:"Off Canvas Sidebar",
short:"Collapsing left sidebar",
full:"A Bootstrap template with left sidebar that collapses off-canvas on smaller width devices like portrait tables and smartphones.",
tags:["starter","responsive","off-canvas","toggle","sidebar","collapse","mobile"],
imgUrl:"http://www.bootply.com/assets/templates/88026.png",
downloadUrl:"http://www.bootply.com/download/88026",
sourceUrl:"http://www.bootply.com/88026",
previewUrl:"http://www.bootply.com/render/88026",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"97459",
name:"Portfolio",
title:"Portfolio",
short:"Gallery Lightbox Thumbnails",
full:"Use this as a basis for a portfolio or image gallery. The Bootstrap 3 modal and carousel are combined to create a lightbox for each image with previous / next navigation links inside the modal lightbox.",
tags:["gallery","modal","lightbox","thumbnail","starter","portfolio"],
imgUrl:"http://www.bootply.com/assets/templates/97459.png",
downloadUrl:"http://www.bootply.com/download/97459",
sourceUrl:"http://www.bootply.com/97459",
previewUrl:"http://www.bootply.com/render/97459",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"62603",
name:"Slider",
title:"Slider",
short:"Intro page with Carousel",
full:"A Bootstrap carousel example with full width images, overlay navbar and dot navigation. The page content has 3 feature content blocks, and long scrolling alternating left and right aligned content sections.",
tags:["starter","slider","carousel","left","right","card"],
imgUrl:"http://www.bootply.com/assets/templates/62603.png",
downloadUrl:"http://www.bootply.com/download/62603",
sourceUrl:"http://www.bootply.com/62603",
previewUrl:"http://www.bootply.com/render/62603",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.0",
license:"MIT"
},
{
id:"101009",
name:"Landing",
title:"Landing Page",
short:"Great startup launch page",
full:"A Bootstrap landing or intro page example. This template features a centered header/logo, email form and social icons. Below the large header are 3 content blocks to highlight features.",
tags:["starter","landing","launch","startup","email","center","form","intro"],
imgUrl:"http://www.bootply.com/assets/templates/101009.png",
downloadUrl:"http://www.bootply.com/download/101009",
sourceUrl:"http://www.bootply.com/101009",
previewUrl:"http://www.bootply.com/render/101009",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.2",
license:"MIT"
},
{
id:"101498",
name:"Sign-In",
title:"Sign In",
short:"Clean modal login form",
full:"A simple login / sign-in page using the Bootstrap 3 modal. This example is shown inline, but could also be used as a pop-up modal.",
tags:["starter","signin","login","modal"],
imgUrl:"http://www.bootply.com/assets/templates/101498.png",
downloadUrl:"http://www.bootply.com/download/101498",
sourceUrl:"http://www.bootply.com/101498",
previewUrl:"http://www.bootply.com/render/101498",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
license:"MIT"
},
{
id:"96937",
name:"App",
title:"App",
short:"Gmail-style full height layout",
full:"100% width app style template for Bootstrap. The content area and sidebar have independant scrollbars. The navbar has a left and right-aligned links.",
tags:["starter","fixed","100%","full","scroll","scrollbars","app","gmail"],
imgUrl:"http://www.bootply.com/assets/templates/96937.png",
downloadUrl:"http://www.bootply.com/download/96937",
sourceUrl:"http://www.bootply.com/96937",
previewUrl:"http://www.bootply.com/render/96937",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"101499",
name:"Blog",
title:"Blog",
short:"Ideal for articles and item lists",
full:"A simple starter for a blog or article list. This template also features a navbar with search form, ad space, and a social button toolbar which uses Font Awesome fonts.",
tags:["starter","ad","blog","list","font-awesome","search"],
imgUrl:"http://www.bootply.com/assets/templates/101499.png",
downloadUrl:"http://www.bootply.com/download/101499",
sourceUrl:"http://www.bootply.com/101499",
previewUrl:"http://www.bootply.com/render/101499",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"101506",
name:"Portal",
title:"Portal",
short:"Multi-purpose modular design",
full:"A versatile Bootstrap template with left/right sidebar, main article list and navbar search form.",
tags:["starter","portal","search","navbar"],
imgUrl:"http://www.bootply.com/assets/templates/101506.png",
downloadUrl:"http://www.bootply.com/download/101506",
sourceUrl:"http://www.bootply.com/101506",
previewUrl:"http://www.bootply.com/render/101506",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"128936",
name:"DashboardSidebar",
title:"Dashboard Sidebar",
short:"Dashboard with off-canvas sidebar",
full:"This is a template for a admin, control panel or dashboard. This template has a collapsible sidebar menu, and a table that can be used as a data grid.",
tags:["starter","admin","dashboard","sidebar","off-canvas","collapse","table"],
imgUrl:"http://www.bootply.com/assets/templates/tmp_128936.png",
downloadUrl:"http://www.bootply.com/download/128936",
sourceUrl:"http://www.bootply.com/128936",
previewUrl:"http://www.bootply.com/render/128936",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"130150",
name:"ECommerce",
title:"E Commerce",
short:"Shop template",
full:"Simple starter layout for an e-commerce template. This template has a large product image, and several smaller images that scale responsively. Also includes a tabbed panel for product details, reviews, etc..",
tags:["starter","product","tabs","e-commerce","shop"],
imgUrl:"http://www.bootply.com/assets/templates/tmp_130150.png",
downloadUrl:"http://www.bootply.com/download/130150",
sourceUrl:"http://www.bootply.com/130150",
previewUrl:"http://www.bootply.com/render/130150",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"129821",
name:"GoogleMaps",
title:"Google Maps",
short:"Foursquare-style with fixed map",
full:"This is a template that uses the Google Maps API. The top nav includes a search form that consumes the full width of the leftover space in the navbar. The layout has 2 columns with a scrolling content pane, and right-side fixed, full height map.",
tags:["starter","height","fixed","sidebar","map","google-maps","google","app","navbar","search"],
imgUrl:"http://www.bootply.com/assets/templates/tmp_129821.png",
downloadUrl:"http://www.bootply.com/download/129821",
sourceUrl:"http://www.bootply.com/129821",
previewUrl:"http://www.bootply.com/render/129821",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"90113",
name:"Plus",
title:"Google Plus",
short:"Google+ style with cards",
full:"Google+ inspired responsive starter template with 2 top navbars, cards, fluid columns and flat design. The template has login modal pop-up, home menu, and layout toggle that switches the grid between 2 and 3 columns.",
tags:["google","google-plus","theme","flat","toggle","cards"],
imgUrl:"http://www.bootply.com/assets/templates/90113.png",
downloadUrl:"http://www.bootply.com/download/90113",
sourceUrl:"http://www.bootply.com/90113",
previewUrl:"http://www.bootply.com/render/90113",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"91970",
name:"Holo",
title:"Holo",
short:"Android inspired Bootstrap theme",
full:"Android Holo theme inspired Bootstrap template with sidebar offcanvas nav, fluid columns and toggle switches. This is sleek, clean design utilizes the Droid Sans Google font.",
tags:["theme","fixed","android","holo","off-canvas","flat","dark","switch"],
imgUrl:"http://www.bootply.com/assets/templates/91970.png",
downloadUrl:"http://www.bootply.com/download/91970",
sourceUrl:"http://www.bootply.com/91970",
previewUrl:"http://www.bootply.com/render/91970",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"85779",
name:"Storystrap",
title:"Storystrap",
short:"Simple article list template",
full:"A single column design that works well for articles, blog posts and content lists. This template features ad space, search form and social media buttons.",
tags:["theme","social","blog","ads"],
imgUrl:"http://www.bootply.com/assets/templates/85779.png",
downloadUrl:"http://www.bootply.com/download/85779",
sourceUrl:"http://www.bootply.com/85779",
previewUrl:"http://www.bootply.com/render/85779",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"85861",
name:"Dashboard",
title:"Dashboard",
short:"Control panel template",
full:"This admin template for Bootstrap features a variety of tabular, form, progress and toolbox widgets in a multi-column responsive layout.",
tags:["theme","admin","dashboard","tree"],
imgUrl:"http://www.bootply.com/assets/templates/85861.png",
downloadUrl:"http://www.bootply.com/download/85861",
sourceUrl:"http://www.bootply.com/85861",
previewUrl:"http://www.bootply.com/render/85861",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"69913",
name:"Bootable",
title:"Bootable",
short:"3-column with sidebar",
full:"A popular social media and tech news site was the inspiration for this 3-column sticky scrolling design.",
tags:["news","theme","affix"],
imgUrl:"http://www.bootply.com/assets/templates/69913.png",
downloadUrl:"http://www.bootply.com/download/69913",
sourceUrl:"http://www.bootply.com/69913",
previewUrl:"http://www.bootply.com/render/69913",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"85746",
name:"CapitalCity",
title:"Capital City",
short:"One page scrolling template",
full:"Single page app style template with smooth scrolling nav, and centered content that make it ideal for a app launch or startup page.",
tags:["theme","parallax","scroll","launch","startup","one-page"],
imgUrl:"http://www.bootply.com/assets/templates/85746.png",
downloadUrl:"http://www.bootply.com/download/85746",
sourceUrl:"http://www.bootply.com/85746",
previewUrl:"http://www.bootply.com/render/85746",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"69873",
name:"Flathood",
title:"Flathood",
short:"Bold 2-column layout",
full:"A popular tech news site was the inspiration for this 2-column bold, bright design. This template uses the Bootstrap affix plugin to pin the sidebar after scrolling past the top header.",
tags:["fixed","affix","sidebar","news","theme","blog"],
imgUrl:"http://www.bootply.com/assets/templates/69873.png",
downloadUrl:"http://www.bootply.com/download/69873",
sourceUrl:"http://www.bootply.com/69873",
previewUrl:"http://www.bootply.com/render/69873",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"85850",
name:"Admin",
title:"Admin",
short:"3 column control panel",
full:"This is a starter template for a admin, control panel or dashboard. This template has a collapsible tree menu, and a variety of panels that can be used as dashboard widgets.",
tags:["admin","starter","dashboard","theme","tree"],
imgUrl:"http://www.bootply.com/assets/templates/85850.png",
downloadUrl:"http://www.bootply.com/download/85850",
sourceUrl:"http://www.bootply.com/85850",
previewUrl:"http://www.bootply.com/render/85850",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"86704",
name:"Basis",
title:"Basis",
short:"Minimal fixed sidebar layout",
full:"A fresh, minimalist design that features a fixed left panel, and scrolling right content panel that works well for articles and blog posts.",
tags:["theme","fixed","sidebar","minimal"],
imgUrl:"http://www.bootply.com/assets/templates/86704.png",
downloadUrl:"http://www.bootply.com/download/86704",
sourceUrl:"http://www.bootply.com/86704",
previewUrl:"http://www.bootply.com/render/86704",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"85657",
name:"Greenfield",
title:"Greenfield",
short:"Bold single page scroller",
full:"Ideal for a landing page, this template includes a smooth scrolling nav, and fixed background images to create a parallax style affect. The top nav menu items are activated as the content sections are scrolled to.",
tags:["theme","launch","scrollspy","scroll","smooth"],
imgUrl:"http://www.bootply.com/assets/templates/85657.png",
downloadUrl:"http://www.bootply.com/download/85657",
sourceUrl:"http://www.bootply.com/85657",
previewUrl:"http://www.bootply.com/render/85657",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"88105",
name:"Darkside",
title:"Darkside",
short:"Dark with off-canvas sidebar",
full:"The deep gray layout features a sidebar drawer menu that responsively collapses off-canvas on smaller devices such as tablets and smartphones.<br>When the sidebar is collapsed, it can be toggled on so that it slides in from the left and consumes 40% of the screen width.<br>This template also includes a sticky bottom footer that stays at the bottom regardless of content height.",
tags:["theme","fixed","dark","sidebar","collapse","off-canvas","mobile","toggle","footer","sticky"],
responsive:true,
imgUrl:"http://www.bootply.com/assets/templates/88105.png",
downloadUrl:"http://www.bootply.com/download/88105",
sourceUrl:"http://www.bootply.com/88105",
previewUrl:"http://www.bootply.com/render/88105",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.3",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"96266",
name:"Facebook",
title:"Facebook",
short:"Facebook-style collapsing sidebar",
full:"<p>A Facebook inspired template and theme that features a responsive collapsible off-canvas sidebar.</p><p>When the sidebar is collapsed, it can be toggled with a chevron arrow so that it slides in from the left to 1/3 of the screen width.</p><p>This template also features a navbar search form, status post modal and content cards.</p>",
tags:["theme","sidebar","facebook","off-canvas","toggle","search","modal"],
responsive:true,
imgUrl:"http://www.bootply.com/assets/templates/96266.png",
downloadUrl:"http://www.bootply.com/download/96266",
sourceUrl:"http://www.bootply.com/96266",
previewUrl:"http://www.bootply.com/render/96266",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT"
},
{
id:"129806",
name:"Sectionalize",
title:"Sectionalize",
short:"Multi-section single page template",
full:"Long scrolling full height sections, with a 4 column footer. The sections automagically scale to full height using CSS calc. This template also includes a search form in the custom navbar.",
tags:["theme","height","sections","app","scrolling","single-page","one-page-app","search","form","navbar","css","full-height"],
imgUrl:"http://www.bootply.com/assets/templates/tmp_129806.png",
downloadUrl:"http://www.bootply.com/download/129806",
sourceUrl:"http://www.bootply.com/129806",
previewUrl:"http://www.bootply.com/render/129806",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
bootstrapVersion:"3.1.1",
license:"MIT"
},
{
id:"88300",
name:"5050",
title:"5050",
short:"Full width 2x2 grid",
full:"A simple layout with fixed header and footer, and a centered 50% height and 50% width 2x2 grid.",
tags:["theme","background","full","100%"],
responsive:true,
imgUrl:"http://www.bootply.com/assets/templates/88300.png",
downloadUrl:"http://www.bootply.com/download/88300",
sourceUrl:"http://www.bootply.com/88300",
previewUrl:"http://www.bootply.com/render/88300",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
license:"MIT",
licenseUrl:""
},
{
id:"100702",
name:"HappyScroll",
title:"Happy Scroll",
short:"One page parallax style",
full:"A bold, bright Bootstrap template that features a centered fly-in navbar with sections that activate when scrolling. This template also includes a Google Maps contact section, social media buttons, sticky footer and fixed image background.",
tags:["fixed","scrollspy","google-maps","map","sections","theme"],
responsive:true,
imgUrl:"http://www.bootply.com/assets/templates/100702.png",
downloadUrl:"http://www.bootply.com/download/100702",
sourceUrl:"http://www.bootply.com/100702",
previewUrl:"http://www.bootply.com/render/100702",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.2",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
licenseUrl:""
},
{
id:"102931",
name:"Firm",
title:"The Firm",
short:"Clean one page scrolling layout",
full:"A long scrolling Bootstrap template with centered navbar and multiple vertical sections. The header contains a full screen image carousel with dot navigation. The center navbar attaches once the user scrolls beyond the carousel / slider. This template also includes a modal lightbox thumbnail viewer that is ideal for a portfolio or image gallery. The contact form address drives the integrated Google maps location.",
tags:["theme","scroll","one-page","background","business","full","google-maps","map","lightbox","slider","gallery","navbar","affix","contact"],
responsive:true,
imgUrl:"http://www.bootply.com/assets/templates/102931.png",
downloadUrl:"http://www.bootply.com/download/102931",
sourceUrl:"http://www.bootply.com/102931",
previewUrl:"http://www.bootply.com/render/102931",
author:"Bootply.com",
authorUrl:"http://www.bootply.com/templates",
bootstrapVersion:"3.0.2",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3663020003/d09fae59ab68605a7973043e0267b905.jpeg",
licenseUrl:""
},
{
name:"Cerulean",
title:"Cerulean Theme",
short:"A Calm, Blue Sky",
full:"A free theme from Bootswatch",
responsive:true,
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/cerulean/thumbnail.png",
downloadUrl:"http://bootswatch.com/cerulean/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/cerulean/",
previewUrl:"http://bootswatch.com/cerulean/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Cosmo",
title:"Cosmo Theme",
short:"An Ode to Metro",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/cosmo/thumbnail.png",
downloadUrl:"http://bootswatch.com/cosmo/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/cosmo/",
previewUrl:"http://bootswatch.com/cosmo/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Cyborg",
title:"Cyborg Theme",
short:"Jet black and electric blue",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/cyborg/thumbnail.png",
downloadUrl:"http://bootswatch.com/cyborg/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/cyborg/",
previewUrl:"http://bootswatch.com/cyborg/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Flatly",
title:"Flatly Theme",
short:"Flat and modern",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme","flat"],
imgUrl:"http://bootswatch.com/flatly/thumbnail.png",
downloadUrl:"http://bootswatch.com/flatly/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/flatly/",
previewUrl:"http://bootswatch.com/flatly/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Readable",
title:"Readable Theme",
short:"Optimized for readability",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme","readable"],
imgUrl:"http://bootswatch.com/readable/thumbnail.png",
downloadUrl:"http://bootswatch.com/readable/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/readable/",
previewUrl:"http://bootswatch.com/readable/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Journal",
title:"Journal Theme",
short:"Crisp like a new paper",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/journal/thumbnail.png",
downloadUrl:"http://bootswatch.com/journal/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/journal/",
previewUrl:"http://bootswatch.com/journal/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Simplex",
title:"Simplex Theme",
short:"Mini and minimalist",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme","minimal"],
imgUrl:"http://bootswatch.com/simplex/thumbnail.png",
downloadUrl:"http://bootswatch.com/simplex/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/simplex/",
previewUrl:"http://bootswatch.com/simplex/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Slate",
title:"Slate Theme",
short:"Shades of gunmetal gray",
full:"A free theme from Bootswatch",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/slate/thumbnail.png",
downloadUrl:"http://bootswatch.com/slate/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/slate/",
previewUrl:"http://bootswatch.com/slate/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Spacelab",
title:"Spacelab Theme",
short:"Silvery and sleek",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/spacelab/thumbnail.png",
downloadUrl:"http://bootswatch.com/spacelab/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/spacelab/",
previewUrl:"http://bootswatch.com/spacelab/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"United",
title:"United Theme",
short:"Ubuntu orange and unique font",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme"],
imgUrl:"http://bootswatch.com/united/thumbnail.png",
downloadUrl:"http://bootswatch.com/united/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/united/",
previewUrl:"http://bootswatch.com/united/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Yeti",
title:"Yeti Theme",
short:"A friendly foundation",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme","foundation","flat"],
imgUrl:"http://bootswatch.com/yeti/thumbnail.png",
downloadUrl:"http://bootswatch.com/yeti/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/yeti/",
previewUrl:"http://bootswatch.com/yeti/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Lumen",
title:"Lumen Theme",
short:"Light and shadow",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme","shadow","white","light"],
imgUrl:"http://bootswatch.com/lumen/thumbnail.png",
downloadUrl:"http://bootswatch.com/lumen/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/lumen/",
previewUrl:"http://bootswatch.com/lumen/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Superhero",
title:"Superhero Theme",
short:"Brave and blue",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme","blue","dark"],
imgUrl:"http://bootswatch.com/superhero/thumbnail.png",
downloadUrl:"http://bootswatch.com/superhero/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/superhero/",
previewUrl:"http://bootswatch.com/superhero/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Paper",
title:"Paper Theme",
short:"Material is the metaphor",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme","white","simple","clean","minimal"],
imgUrl:"http://bootswatch.com/paper/thumbnail.png",
downloadUrl:"http://bootswatch.com/paper/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/paper/",
previewUrl:"http://bootswatch.com/paper/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Sandstone",
title:"Sandstone Theme",
short:"A touch of warmth",
full:"A free theme from Bootswatch. This theme includes the complete Bootstrap baseline so it replaces your existing bootstrap.css.",
tags:["bootswatch","theme","white","simple","flat","light"],
imgUrl:"http://bootswatch.com/sandstone/thumbnail.png",
downloadUrl:"http://bootswatch.com/sandstone/bootstrap.min.css",
sourceUrl:"http://bootswatch.com/sandstone/",
previewUrl:"http://bootswatch.com/sandstone/",
author:"Bootswatch",
authorUrl:"http://bootswatch.com/",
bootstrapVersion:"3.2.0",
license:"MIT",
avatar:"https://pbs.twimg.com/profile_images/3387741863/b048a3aa0b489981587c20cc813f57e1.jpeg",
licenseUrl:""
},
{
name:"Flatty",
title:"Flatty",
short:"Flat landing page",
full:"Flatty is a free Bootstrap template from BlackTie that is a flat landing page designed to show your next app, site or product. With a fresh style & minimal design, you can now show your product with style.",
tags:["blacktie","theme","flat","landing","launch","product","startup","app"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/12/flatty-copia.png",
downloadUrl:"http://bit.ly/18QS8X2",
sourceUrl:"http://www.blacktie.co/2013/12/flatty-app-landing-page/",
previewUrl:"http://www.blacktie.co/demo/flatty/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.3",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Bolt",
title:"Bolt",
short:"Flat one page theme",
full:"Bolt is a Bootstrap template from BlackTie. Bolt is an elegant option to show your work and contact information. A clean design with focus on information. Includes Font Awesome 4.0.3 & Chart.js script. The overall design was inspired by the awesome work of Jack Lalley. Dribbble shots used in this demo comes from the designer Justin Mezzell.",
tags:["blacktie","theme","flat","chart","portfolio","one-page"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/11/bolt-copia.png",
downloadUrl:"http://bit.ly/1eve3Er",
sourceUrl:"http://www.blacktie.co/2013/11/bolt-flat-one-page-theme/",
previewUrl:"http://blacktie.co/demo/bolt/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.2",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Small",
title:"Small",
short:"Dribble portfolio Bootstrap theme",
full:"Small is a Bootstrap template from BlackTie. Small is a little theme focused in your latest dribbble shots. Thanks to the jibbble script, this theme allows you to show 8 shots on the front page. Works excellent as a vCard option.",
tags:["blacktie","theme","dribble","portfolio","one-page"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/11/small-copia.png",
downloadUrl:"http://bit.ly/1fEate0",
sourceUrl:"http://www.blacktie.co/2013/11/small-dribbble-portfolio-theme/",
previewUrl:"http://blacktie.co/demo/small/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.2",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Minimal",
title:"Minimal Dark",
short:"Dark Bootstrap theme",
full:"Minimal is a Bootstrap template from BlackTie. Minimal is a simple and small theme. Ideal for a contact page or minimal site. This theme was designed for those wanting something different more than the habitual information page.",
tags:["blacktie","theme","dark","contact","minimal"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/10/minimal-copia.png",
downloadUrl:"http://bit.ly/1h1qJay",
sourceUrl:"http://www.blacktie.co/2013/10/minimal-dark-bootstrap-3-theme/",
previewUrl:"http://blacktie.co/demo/minimal",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.0",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Munter",
title:"Munter",
short:"One page theme",
full:"Munter is another Bootstrap template from BlackTie. Munter is a very handsome Bootstrap 3 theme with a centered navbar. Comes with beautiful features like a fixed arrows navigation, a nice portfolio showcase and a smooth scroll.",
tags:["blacktie","theme","smooth","one-page","scroll","center","navbar"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/10/munter-copia.png",
downloadUrl:"http://bit.ly/17549aE",
sourceUrl:"http://www.blacktie.co/2013/10/munter-one-page-theme/",
previewUrl:"http://blacktie.co/demo/munter",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.0",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Stanley",
title:"Stanley",
short:"Freelancer theme",
full:"Stanley is yet another impressive template from BlackTie. Stanley is a really simple theme for those wanting to showcase their work with a clean style. Dribbble shots used in this theme are from the awesome designer David Creighton-Pester. This is also available in Wordpress and Drupal versions.",
tags:["blacktie","theme","smooth","profile","developer","one-page","scroll","center","green","wordpress","drupal"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2014/01/stanley.png",
downloadUrl:"http://bit.ly/1eRSs8n",
sourceUrl:"http://www.blacktie.co/2014/01/stanley-freelancer-theme/",
previewUrl:"http://www.blacktie.co/demo/stanley/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.0.3",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Shield",
title:"Shield",
short:"One-page theme",
full:"Shield is yet another beautiful template by Carlos at BlackTie. Shield is an one page theme, ideal for agencies and freelancers. Elegant and with a fresh style. Uses the beautiful icomoon fonts.",
tags:["blacktie","theme","photo","one-page","scroll","center","images","team","fonts"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2014/02/shield.png",
downloadUrl:"http://bit.ly/NxsT4V",
sourceUrl:"http://www.blacktie.co/2014/02/shield-one-page-theme/",
previewUrl:"http://www.blacktie.co/demo/shield/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.1.0",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Counter",
title:"Counter",
short:"Coming soon countdown",
full:"Counter is a useful and beautiful template from BlackTie. Counter is a coming soon theme that uses Revolution Slider to showcase images at the background. The countdown is powered by a custom Javascript. Modify that script to set the proper date.",
tags:["blacktie","theme","background","one-page","counter","launch","startup","javascript","coming-soon","landing","date","countdown","clock"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2014/03/counter.png",
downloadUrl:"https://dl.dropboxusercontent.com/u/105401917/BlackTie/counter.zip",
sourceUrl:"http://www.blacktie.co/2014/03/counter-coming-soon-page/",
previewUrl:"http://blacktie.co/demo/counter/",
author:"BlackTie",
authorUrl:"http://www.blacktie.co",
bootstrapVersion:"3.1.1",
license:"CC0",
avatar:"https://pbs.twimg.com/profile_images/427947974044315648/DYrSsfHE.png",
licenseUrl:""
},
{
name:"Pratt",
title:"Pratt",
short:"App landing or startup page",
full:"Pratt is another simple, clean template from BlackTie. Pratt makes a quick simple landing page for your new startup or app. Really easy to use and modify. It works well for a Coming Soon Page.",
tags:["blacktie","theme","background","one-page","launch","startup","landing","coming-soon","app"],
imgUrl:"http://www.blacktie.co/blog/wp-content/uploads/2013/10/pratt-copia.png",
downloadUrl:"http://bit.ly/1g3Bskf",
sourceUrl:"http://www.blacktie.co/2013/10/pratt-app-landing-page/",
previewUrl:"http://blacktie.co/demo/pratt/",