forked from fossasia/gci18.fossasia.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome-default-2.html
1086 lines (1086 loc) · 66 KB
/
home-default-2.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Foundry Multi-purpose HTML Template</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/themify-icons.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/flexslider.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/lightbox.min.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/ytplayer.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/theme.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/custom.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Lato:300,400%7CRaleway:100,400,300,500,600,700%7COpen+Sans:400,500,600' rel='stylesheet' type='text/css'>
</head>
<body class="scroll-assist">
<div class="nav-container">
<a id="top"></a>
<nav>
<div class="nav-bar">
<div class="module left">
<a href="index.html">
<img class="logo logo-light" alt="Foundry" src="img/logo-light.png" />
<img class="logo logo-dark" alt="Foundry" src="img/logo-dark.png" />
</a>
</div>
<div class="module widget-handle mobile-toggle right visible-sm visible-xs">
<i class="ti-menu"></i>
</div>
<div class="module-group right">
<div class="module left">
<ul class="menu">
<li class="has-dropdown">
<a href="#">
Home
</a>
<ul class="mega-menu">
<li>
<ul>
<li>
<span class="title">Concepts</span>
</li>
<li>
<a href="home-adventure.html">Adventure Travel</a>
</li>
<li>
<a href="home-agency.html">Agency</a>
</li>
<li>
<a href="home-agency-2.html">Agency 2</a>
<span class="label">New!</span>
</li>
<li>
<a href="home-app-landing.html">App Landing</a>
</li>
<li>
<a href="home-app-landing-2.html">App Landing 2</a>
</li>
<li>
<a href="home-capital-firm.html">Capital Firm</a>
</li>
<li>
<a href="home-fashion.html">Fashion</a>
</li>
<li>
<a href="home-fitness.html">Fitness</a>
</li>
<li>
<a href="home-restaurant.html">Restaurant</a>
</li>
<li>
<a href="home-music.html">Music</a>
</li>
<li>
<a href="home-event.html">Event / Seminar</a>
</li>
<li>
<a href="home-architecture.html">Architecture</a>
</li>
</ul>
</li>
<li>
<ul>
<li>
<a href="home-photography.html">Photography</a>
</li>
<li>
<a href="home-photography-2.html">Ken Burns</a>
</li>
<li>
<a href="home-personal-portfolio.html">Portfolio</a>
</li>
<li>
<a href="home-property.html">Property Listing</a>
</li>
<li>
<a href="home-resume.html">Resumé</a>
</li>
<li>
<a href="home-winery.html">Winery</a>
</li>
<li>
<span class="title">Home Pages</span>
</li>
<li>
<a href="index.html">Home Classic</a>
</li>
<li>
<a href="home-default-2.html">Home Layout 2</a>
</li>
<li>
<a href="home-default-3.html">Home Layout 3</a>
</li>
<li>
<a href="home-default-4.html">Home Layout 4</a>
</li>
<li>
<a href="home-default-5.html">Home Layout 5</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Pages
</a>
<ul class="mega-menu">
<li>
<ul>
<li>
<span class="title">Inner Pages</span>
</li>
<li>
<a href="page-about-us-1.html">About Us 1</a>
</li>
<li>
<a href="page-about-us-2.html">About Us 2</a>
</li>
<li>
<a href="page-about-us-3.html">About Us 3</a>
</li>
<li>
<a href="page-services-1.html">Services 1</a>
</li>
<li>
<a href="page-services-2.html">Services 2</a>
</li>
<li>
<a href="page-services-3.html">Services 3</a>
</li>
<li>
<a href="page-contact-1.html">Contact 1</a>
</li>
<li>
<a href="page-contact-2.html">Contact 2</a>
</li>
<li>
<a href="page-contact-3.html">Planner</a>
</li>
</ul>
</li>
<li>
<ul>
<li>
<span class="title">Utility Pages</span>
</li>
<li>
<a href="page-login.html">Login</a>
</li>
<li>
<a href="page-register.html">Register</a>
</li>
<li>
<a href="page-coming-soon.html">Coming Soon</a>
</li>
<li>
<a href="page-faq.html">FAQ</a>
</li>
<li>
<a href="page-confirmation.html">Confirmation</a>
</li>
<li>
<a href="page-countdown.html">Countdown</a>
</li>
<li>
<a href="page-countdown-2.html">Countdown 2</a>
</li>
<li>
<a href="page-404.html">404 - Error</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Elements
</a>
<ul class="mega-menu">
<li>
<ul>
<li>
<span class="title">Elements</span>
</li>
<li>
<a href="elements-buttons.html">
<i class="ti-link"></i> Buttons</a>
</li>
<li>
<a href="elements-tabs.html">
<i class="ti-layout-tab"></i> Tabbed Content</a>
</li>
<li>
<a href="elements-progress.html">
<i class="ti-rocket"></i> Progress Bars</a>
</li>
<li>
<a href="elements-accordions.html">
<i class="ti-layout-accordion-separated"></i> Accordions</a>
</li>
<li>
<a href="elements-alerts.html">
<i class="ti-flag-alt"></i> Alerts</a>
</li>
<li>
<a href="elements-form-inputs.html">
<i class="ti-pencil-alt"></i> Form Inputs</a>
</li>
<li>
<a href="elements-countdown.html">
<i class="ti-alarm-clock"></i> Countdowns</a>
</li>
<li>
<a href="elements-modals.html">
<i class="ti-layout-slider-alt"></i> Modals</a>
</li>
</ul>
</li>
<li>
<ul>
<li>
<span class="title">Elements</span>
</li>
<li>
<a href="elements-pricing.html">
<i class="ti-money"></i> Pricing Tables</a>
</li>
<li>
<a href="elements-icon-boxes.html">
<i class="ti-eye"></i> Icon Boxes</a>
</li>
<li>
<a href="elements-widgets.html">
<i class="ti-layout-media-right"></i> Widgets</a>
</li>
<li>
<a href="elements-typography.html">
<i class="ti-text"></i> Typography</a>
</li>
<li>
<a href="elements-lists.html">
<i class="ti-list"></i> Lists</a>
</li>
<li>
<a href="elements-grid.html">
<i class="ti-view-grid"></i> Grid Structure</a>
</li>
<li>
<a href="elements-textimage.html">
<i class="ti-layout-list-large-image"></i> Text & Image</a>
</li>
<li>
<a href="elements-intros.html">
<i class="ti-microphone"></i> Intro Sections</a>
</li>
</ul>
</li>
<li>
<ul>
<li>
<span class="title">Elements</span>
</li>
<li>
<a href="elements-titles.html">
<i class="ti-layout-cta-left"></i> Titles Left</a>
</li>
<li>
<a href="elements-titles-center.html">
<i class="ti-layout-cta-center"></i> Titles Center</a>
</li>
<li>
<a href="elements-video.html">
<i class="ti-video-clapper"></i> Video Inline</a>
</li>
<li>
<a href="elements-video-bg.html">
<i class="ti-video-clapper"></i> Video BG</a>
</li>
<li>
<a href="elements-video-slider.html">
<i class="ti-video-clapper"></i> Video Slider</a>
</li>
<li>
<a href="elements-galleries.html">
<i class="ti-gallery"></i> Image Galleries</a>
</li>
<li>
<a href="elements-parallax.html">
<i class="ti-layers"></i> Parallax</a>
</li>
<li>
<a href="elements-nav-light.html">
<i class="ti-menu-alt"></i> Nav Styles</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Portfolio
</a>
<ul>
<li class="has-dropdown">
<a href="#">
Contained
</a>
<ul>
<li>
<a href="portfolio-grid-2col.html">
2 Columns
</a>
</li>
<li>
<a href="portfolio-grid.html">
3 Columns
</a>
</li>
<li>
<a href="portfolio-grid-4col.html">
4 Columns
</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Wide
</a>
<ul>
<li>
<a href="portfolio-wide-2col.html">
2 Columns
</a>
</li>
<li>
<a href="portfolio-wide.html">
3 Columns
</a>
</li>
<li>
<a href="portfolio-wide-4col.html">
4 Columns
</a>
</li>
</ul>
</li>
<li>
<a href="portfolio-parallax.html">
Parallax
</a>
</li>
<li class="has-dropdown">
<a href="#">
Single
</a>
<ul>
<li>
<a href="portfolio-single-1.html">
Case Study 1
</a>
</li>
<li>
<a href="portfolio-single-2.html">
Case Study 2
</a>
</li>
<li>
<a href="portfolio-single-3.html">
Case Study 3
</a>
</li>
<li>
<a href="portfolio-single-4.html">
Case Study 4
</a>
</li>
<li>
<a href="portfolio-single-5.html">
Case Study 5
</a>
</li>
</ul>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Shop
</a>
<ul>
<li class="has-dropdown">
<a href="#">
Shop Layout
</a>
<ul>
<li>
<a href="shop-sidebar.html">
Sidebar Left
</a>
</li>
<li>
<a href="shop-sidebar-right.html">
Sidebar Right
</a>
</li>
<li>
<a href="shop-fullwidth-4col.html">
4 Columns
</a>
</li>
<li>
<a href="shop-fullwidth.html">
3 Columns
</a>
</li>
<li>
<a href="shop-fullwidth-2col.html">
2 Columns
</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Product Single
</a>
<ul>
<li>
<a href="shop-product-sidebar-left.html">
Sidebar Left
</a>
</li>
<li>
<a href="shop-product-sidebar.html">
Sidebar Right
</a>
</li>
<li>
<a href="shop-product-fullwidth.html">
No Sidebar
</a>
</li>
</ul>
</li>
<li>
<a href="shop-cart.html">
Cart
</a>
</li>
<li>
<a href="shop-checkout.html">
Checkout
</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Blog
</a>
<ul>
<li class="has-dropdown">
<a href="#">
Listing
</a>
<ul>
<li>
<a href="blog-sidebar.html">
Sidebar Left
</a>
</li>
<li>
<a href="blog-sidebar-right.html">
Sidebar Right
</a>
</li>
<li>
<a href="blog-no-sidebar.html">
No Sidebar
</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Masonry
</a>
<ul>
<li>
<a href="blog-masonry-sidebar.html">
Sidebar Left
</a>
</li>
<li>
<a href="blog-masonry-sidebar-right.html">
Sidebar Right
</a>
</li>
<li>
<a href="blog-masonry.html">
3 Columns
</a>
</li>
<li>
<a href="blog-masonry-2col.html">
2 Columns
</a>
</li>
</ul>
</li>
<li class="has-dropdown">
<a href="#">
Single
</a>
<ul>
<li>
<a href="blog-single-sidebar.html">
Sidebar Left
</a>
</li>
<li>
<a href="blog-single-sidebar-right.html">
Sidebar Right
</a>
</li>
<li>
<a href="blog-single-no-sidebar.html">
No Sidebar
</a>
</li>
<li>
<a href="blog-single-disqus.html">
Disqus Comments
</a>
</li>
</ul>
</li>
<li>
<a href="blog-simple-feed.html">
Simple Feed
</a>
</li>
</ul>
</li>
</ul>
</div>
<!--end of menu module-->
<div class="module widget-handle search-widget-handle left">
<div class="search">
<i class="ti-search"></i>
<span class="title">Search Site</span>
</div>
<div class="function">
<form class="search-form">
<input type="text" placeholder="Type Here" />
</form>
</div>
</div>
<div class="module widget-handle cart-widget-handle left">
<div class="cart">
<i class="ti-bag"></i>
<span class="label number">2</span>
<span class="title">Shopping Cart</span>
</div>
<div class="function">
<div class="widget">
<h6 class="title">Shopping Cart</h6>
<hr>
<ul class="cart-overview">
<li>
<a href="#">
<img alt="Product" src="img/shop-widget-1.png" />
<div class="description">
<span class="product-title">Canvas Backpack</span>
<span class="price number">$39.90</span>
</div>
</a>
</li>
<li>
<a href="#">
<img alt="Product" src="img/shop-widget-2.png" />
<div class="description">
<span class="product-title">Vintage Camera</span>
<span class="price number">$249.50</span>
</div>
</a>
</li>
</ul>
<hr>
<div class="cart-controls">
<a class="btn btn-sm btn-filled" href="#">Checkout</a>
<div class="list-inline pull-right">
<span class="cart-total">Total: </span>
<span class="number">$289.40</span>
</div>
</div>
</div>
<!--end of widget-->
</div>
</div>
<div class="module widget-handle language left">
<ul class="menu">
<li class="has-dropdown">
<a href="#">ENG</a>
<ul>
<li>
<a href="#">French</a>
</li>
<li>
<a href="#">Deutsch</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!--end of module group-->
</div>
</nav>
</div>
<div class="main-container">
<section class="fullscreen cover parallax image-bg overlay">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home-2-1.jpg" />
</div>
<div class="container v-align-transform">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="mb16">Foundry is a complete design
<br class="hidden-sm" /> toolkit, perfect for your next project</h1>
<h6 class="uppercase mb32">Modular Design For Absolute Freedom.</h6>
<div class="modal-container mb0">
<div class="play-button inline large btn-modal"></div>
<div class="foundry_modal no-bg">
<iframe data-provider="vimeo" data-video-id="25737856" data-autoplay="1" allowfullscreen="allowfullscreen"></iframe>
</div>
</div>
<!--end of modal video-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="pt120 pb120 pt-xs-80 pb-xs-80">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 col-sm-12 text-center">
<h3>Built from the ground-up to be the ultimate in flexibility</h3>
<p class="lead mb0">
Foundry is a remarkably complete template offering you a plethora of handcrafted design elements. Whether promoting a product, service or portfolio - Foundry's unique and flexible style has you covered.
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="projects p0 bg-dark">
<div class="row masonry-loader">
<div class="col-sm-12 text-center">
<div class="spinner"></div>
</div>
</div>
<div class="row masonry masonryFlyIn">
<div class="col-md-4 col-sm-6 masonry-item project" data-filter="People">
<div class="image-tile inner-title hover-reveal text-center">
<a href="#">
<img alt="Pic" src="img/home8.jpg" />
<div class="title">
<h5 class="uppercase mb0">Office Space</h5>
<span>Technology / Life</span>
</div>
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 masonry-item project" data-filter="Animals">
<div class="image-tile inner-title hover-reveal text-center">
<a href="#">
<img alt="Pic" src="img/home-2-3.jpg" />
<div class="title">
<h5 class="uppercase mb0">Preparing The Convoy</h5>
<span>People / Art</span>
</div>
</a>
</div>
</div>
<div class="col-md-4 col-sm-6 masonry-item project" data-filter="People">
<div class="image-tile inner-title hover-reveal text-center">
<a href="#">
<img alt="Pic" src="img/home-2-4.jpg" />
<div class="title">
<h5 class="uppercase mb0">Beachside</h5>
<span>Lifestyle / Art</span>
</div>
</a>
</div>
</div>
</div>
<!--end of row-->
</section>
<section>
<div class="container">
<div class="row mb64 mb-xs-24">
<div class="col-md-10 col-md-offset-1 col-sm-12 text-center">
<h3>Our Expertise</h3>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-md-5 col-md-offset-1 col-sm-6 mb40 mb-xs-24">
<i class="ti-layers icon inline-block mb16 fade-3-4"></i>
<h4>Modular Design</h4>
<p>
With a plethora of purpose-built content blocks, colors and fonts, Foundry presents a mind-boggling number of combinations. Test drive the builder now!
</p>
</div>
<div class="col-md-5 col-sm-6 mb40 mb-xs-24">
<i class="ti-gallery icon inline-block mb16 fade-3-4"></i>
<h4>Silky Parallax</h4>
<p>
We've built a buttery smooth parallax scrolling experience with a heavy focus on performance. Extensively tested across a range of browser and mouse types.
</p>
</div>
<div class="col-md-5 col-md-offset-1 col-sm-6 mb40 mb-xs-24">
<i class="ti-package icon inline-block mb16 fade-3-4"></i>
<h4>Unique Concepts</h4>
<p>
10 Fresh and unique concepts included out of the box. From portfolio to property showcase, Foundry's adaptable look is perfect for your next project.
</p>
</div>
<div class="col-md-5 col-sm-6 mb40 mb-xs-24">
<i class="ti-infinite icon inline-block mb16 fade-3-4"></i>
<h4>Infinite Possibility</h4>
<p>
With over 100 pre-made HTML templates included, it's easier than ever to find a look that suits you. If not, just create your own with Variant Page Builder!
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="image-bg parallax overlay">
<div class="background-image-holder">
<img alt="image" class="background-image" src="img/home-2-5.jpg" />
</div>
<div class="container">
<div class="row mb40 mb-xs-24">
<div class="col-sm-12 text-center">
<h3 class="mb8">Subscribe for a monthly roundup of best bits.</h3>
<p>Don't worry, we hate spam too - that's why we only send out monthly emails.</p>
</div>
</div>
<!--end of row-->
<div class="row mb80 mb-xs-24">
<div class="col-sm-6 col-sm-offset-3">
<form class="form-newsletter halves" data-success="Thanks for your registration, we will be in touch shortly." data-error="Please fill all fields correctly.">
<input type="text" name="email" class="mb0 transparent validate-email validate-required signup-email-field" placeholder="Email Address" />
<button type="submit" class="mb0">Subscribe</button>
<iframe srcdoc="<!-- Begin MailChimp Signup Form --><link href="https://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css"><style type="text/css"> #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; } /* Add your own MailChimp form style overrides in your site stylesheet or in this style block. We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */</style><div id="mc_embed_signup"><form action="//mrare.us8.list-manage.com/subscribe/post?u=77142ece814d3cff52058a51f&id=94d040322a" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> <div id="mc_embed_signup_scroll"> <h2>Subscribe to our mailing list</h2><div class="indicates-required"><span class="asterisk">*</span> indicates required</div><div class="mc-field-group"> <label for="mce-EMAIL">Email Address <span class="asterisk">*</span></label> <input type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL"></div><div class="mc-field-group"> <label for="mce-FNAME">First Name </label> <input type="text" value="" name="FNAME" class="" id="mce-FNAME"></div><div class="mc-field-group"> <label for="mce-LNAME">Last Name </label> <input type="text" value="" name="LNAME" class="" id="mce-LNAME"></div> <div id="mce-responses" class="clear"> <div class="response" id="mce-error-response" style="display:none"></div> <div class="response" id="mce-success-response" style="display:none"></div> </div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups--> <div style="position: absolute; left: -5000px;"><input type="text" name="b_77142ece814d3cff52058a51f_94d040322a" tabindex="-1" value=""></div> <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button"></div> </div></form></div><script type='text/javascript' src='https://s3.amazonaws.com/downloads.mailchimp.com/js/mc-validate.js'></script><script type='text/javascript'>(function($) {window.fnames = new Array(); window.ftypes = new Array();fnames[0]='EMAIL';ftypes[0]='email';fnames[1]='FNAME';ftypes[1]='text';fnames[2]='LNAME';ftypes[2]='text';}(jQuery));var $mcj = jQuery.noConflict(true);</script><!--End mc_embed_signup-->" class="mail-list-form">
</iframe>
</form>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-sm-12 text-center spread-children-large">
<img alt="pic" class="image-xxs mb-xs-8 fade-1-4" src="img/c1.png" />
<img alt="pic" class="image-xxs mb-xs-8 fade-1-4" src="img/c2.png" />
<img alt="pic" class="image-xxs mb-xs-8 fade-1-4" src="img/c3.png" />
<img alt="pic" class="image-xxs mb-xs-8 fade-1-4" src="img/c4.png" />
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section>
<div class="container">
<div class="row mb80 mb-xs-24">
<div class="col-md-8 col-md-offset-2 col-sm-12 text-center">
<h3>A team of friendly creatives combining
<br /> design and development.</h3>
<p class="mb0">
Foundry is a remarkably complete template offering you a plethora of handcrafted design elements. Whether promoting a product, service or portfolio - Foundry's unique and flexible style has you covered.
</p>
</div>
</div>
<!--end of row-->
<div class="row mb64 mb-xs-24">
<div class="col-md-10 col-md-offset-1">
<img alt="Pic" class="cast-shadow" src="img/home-2-9.jpg" />
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-md-8 col-md-offset-2 col-sm-12 text-center">
<div class="tabbed-content button-tabs">
<ul class="tabs">
<li class="active">
<div class="tab-title">
<span>History</span>
</div>
<div class="tab-content">
<p>
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores.
</p>
</div>
</li>
<li>
<div class="tab-title">
<span>Approach</span>
</div>
<div class="tab-content">
<p>
Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur?
</p>
</div>
</li>
<li>
<div class="tab-title">
<span>Culture</span>
</div>
<div class="tab-content">
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est.
</p>
</div>
</li>
<li>
<div class="tab-title">
<span>Method</span>
</div>
<div class="tab-content">
<p>
Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae.
</p>
</div>
</li>
</ul>
</div>
<!--end of button tabs-->
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="bg-secondary">
<div class="container">
<div class="row mb64 mb-xs-24">
<div class="col-md-10 col-md-offset-1 col-sm-12 text-center">
<h3>Latest Posts</h3>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-sm-4">
<a href="#">
<img alt="Pic" class="mb24" src="img/home4.jpg" />
</a>
<a href="#">
<h4 class="mb8">Hanging Ten</h4>
</a>
<ul class="list-inline mb16">
<li>September 25, 2011</li>
<li>
<a href="#">Craig Garner</a>
</li>
<li>
<a href="#">
<span class="label">Lifestyle</span>
</a>
</li>
</ul>
<p class="mb0">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in pharetra eros. Vivamus eu nisi ut dui bibendum ornare vitae a enim. Sed sit amet
</p>
</div>
<div class="col-sm-4">
<a href="#">
<img alt="Pic" class="mb24" src="img/home5.jpg" />
</a>
<a href="#">
<h4 class="mb8">Round The Twist</h4>
</a>
<ul class="list-inline mb16">
<li>September 21, 2011</li>
<li>
<a href="#">Craig Garner</a>
</li>
<li>
<a href="#">
<span class="label">Nostalgia</span>
</a>
</li>
</ul>
<p class="mb0">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in pharetra eros. Vivamus eu nisi ut dui bibendum ornare vitae a enim. Sed sit amet
</p>
</div>
<div class="col-sm-4">
<a href="#">
<img alt="Pic" class="mb24" src="img/home14.jpg" />
</a>
<a href="#">
<h4 class="mb8">Road Trippin'</h4>
</a>
<ul class="list-inline mb16">
<li>September 18, 2011</li>
<li>
<a href="#">Craig Garner</a>
</li>
<li>
<a href="#">
<span class="label">Lifestyle</span>
</a>
</li>
</ul>
<p class="mb0">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in pharetra eros. Vivamus eu nisi ut dui bibendum ornare vitae a enim. Sed sit amet
</p>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<section class="image-bg parallax overlay">
<div class="background-image-holder">
<img alt="Background Image" class="background-image" src="img/home2.jpg">
</div>
<div class="container">
<div class="row mb64 mb-xs-24">
<div class="col-sm-6 col-md-5 text-right text-center-xs">
<h1 class="large mb8">10,000+</h1>
<h6 class="uppercase">Customers using our templates</h6>
</div>
<div class="col-md-2 text-center hidden-sm hidden-xs">
<i class="ti-infinite icon icon-lg mt8 mt-xs-0"></i>
</div>
<div class="col-sm-6 col-md-5 text-center-xs">
<h1 class="large mb8">Limitless</h1>
<h6 class="uppercase">Layout potential using Foundry</h6>
</div>
</div>
<!--end of row-->
<div class="row">
<div class="col-sm-12 text-center">
<h3 class="mb40 mb-xs-24">Authentic, handcrafted design that gives your
<br /> site subtle, confident appeal.</h3>
<a class="btn btn-lg btn-filled" href="chooser.html">Check Out The Demos</a>
</div>
</div>
<!--end of row-->
</div>
<!--end of container-->
</section>
<footer class="footer-1 bg-dark">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<img alt="Logo" class="logo" src="img/logo-light.png" />
</div>
<div class="col-md-3 col-sm-6">
<div class="widget">
<h6 class="title">Recent Posts</h6>
<hr>
<ul class="link-list recent-posts">
<li>
<a href="#">Hugging pugs is super trendy</a>
<span class="date">February
<span class="number">14, 2015</span>
</span>
</li>
<li>
<a href="#">Spinning vinyl is oh so cool</a>