-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault.html
863 lines (683 loc) · 27.5 KB
/
default.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
<!DOCTYPE html>
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
<head>
-->
{% include head.html %}
</head>
<!--
AVAILABLE BODY CLASSES:
smoothscroll = create a browser smooth scroll
enable-animation = enable WOW animations
bg-grey = grey background
grain-grey = grey grain background
grain-blue = blue grain background
grain-green = green grain background
grain-blue = blue grain background
grain-orange = orange grain background
grain-yellow = yellow grain background
boxed = boxed layout
pattern1 ... patern11 = pattern background
menu-vertical-hide = hidden, open on click
BACKGROUND IMAGE [together with .boxed class]
data-background="./assets/images/boxed_background/1.jpg"
-->
<body class="smoothscroll enable-animation">
<!-- SLIDE TOP -->
<div id="slidetop">
<div class="container">
<div class="row">
<div class="col-md-4">
<h6><i class="icon-heart"></i> WHY SMARTY?</h6>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas metus nulla, commodo a sodales sed, dignissim pretium nunc. Nam et lacus neque. Ut enim massa, sodales tempor convallis et, iaculis ac massa. </p>
</div>
<div class="col-md-4">
<h6><i class="icon-attachment"></i> RECENTLY VISITED</h6>
<ul class="list-unstyled">
<li><a href="#"><i class="fa fa-angle-right"></i> Consectetur adipiscing elit amet</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> This is a very long text, very very very very very very very very very very very very </a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Lorem ipsum dolor sit amet</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Dolor sit amet,consectetur adipiscing elit amet</a></li>
<li><a href="#"><i class="fa fa-angle-right"></i> Consectetur adipiscing elit amet,consectetur adipiscing elit</a></li>
</ul>
</div>
<div class="col-md-4">
<h6><i class="icon-envelope"></i> CONTACT INFO</h6>
<ul class="list-unstyled">
<li><b>Address:</b> PO Box 21132, Here Weare St, <br /> Melbourne, Vivas 2355 Australia</li>
<li><b>Phone:</b> 1-800-565-2390</li>
<li><b>Email:</b> <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</div>
</div>
<a class="slidetop-toggle" href="#"><!-- toggle button --></a>
</div>
<!-- /SLIDE TOP -->
<!-- wrapper -->
<div id="wrapper">
<!--
AVAILABLE HEADER CLASSES
Default nav height: 96px
.header-md = 70px nav height
.header-sm = 60px nav height
.noborder = remove bottom border (only with transparent use)
.transparent = transparent header
.translucent = translucent header
.sticky = sticky header
.static = static header
.dark = dark header
.bottom = header on bottom
shadow-before-1 = shadow 1 header top
shadow-after-1 = shadow 1 header bottom
shadow-before-2 = shadow 2 header top
shadow-after-2 = shadow 2 header bottom
shadow-before-3 = shadow 3 header top
shadow-after-3 = shadow 3 header bottom
.clearfix = required for mobile menu, do not remove!
Example Usage: class="clearfix sticky header-sm transparent noborder"
-->
<div id="header" class="sticky transparent clearfix">
<!-- TOP NAV -->
<header id="topNav">
<div class="container">
<!-- Mobile Menu Button -->
<button class="btn btn-mobile" data-toggle="collapse" data-target=".nav-main-collapse">
<i class="fa fa-bars"></i>
</button>
<!-- BUTTONS -->
<ul class="pull-right nav nav-pills nav-second-main">
<!-- SEARCH -->
<li class="search">
<a href="javascript:;">
<i class="fa fa-search"></i>
</a>
<div class="search-box">
<form action="page-search-result-1.html" method="get">
<div class="input-group">
<input type="text" name="src" placeholder="Search" class="form-control" />
<span class="input-group-btn">
<button class="btn btn-primary" type="submit">Search</button>
</span>
</div>
</form>
</div>
</li>
<!-- /SEARCH -->
<!-- QUICK SHOP CART -->
<li class="quick-cart">
<a href="#">
<span class="badge badge-aqua btn-xs badge-corner">2</span>
<i class="fa fa-shopping-cart"></i>
</a>
<div class="quick-cart-box">
<h4>Shop Cart</h4>
<div class="quick-cart-wrapper">
<a href="#"><!-- cart item -->
<img src="./assets/images/demo/people/300x300/4-min.jpg" width="45" height="45" alt="" />
<h6><span>2x</span> RED BAG WITH HUGE POCKETS</h6>
<small>$37.21</small>
</a><!-- /cart item -->
<a href="#"><!-- cart item -->
<img src="./assets/images/demo/people/300x300/5-min.jpg" width="45" height="45" alt="" />
<h6><span>2x</span> THIS IS A VERY LONG TEXT AND WILL BE TRUNCATED</h6>
<small>$17.18</small>
</a><!-- /cart item -->
<!-- cart no items example -->
<!--
<a class="text-center" href="#">
<h6>0 ITEMS ON YOUR CART</h6>
</a>
-->
</div>
<!-- quick cart footer -->
<div class="quick-cart-footer clearfix">
<a href="shop-cart.html" class="btn btn-primary btn-xs pull-right">VIEW CART</a>
<span class="pull-left"><strong>TOTAL:</strong> $54.39</span>
</div>
<!-- /quick cart footer -->
</div>
</li>
<!-- /QUICK SHOP CART -->
</ul>
<!-- /BUTTONS -->
<!-- Logo -->
<a class="logo pull-left" href="index.html">
<img src="./assets/images/logo_light.png" alt="" /> <!-- light logo -->
<img src="./assets/images/logo_dark.png" alt="" /> <!-- dark logo -->
</a>
<!--
Top Nav
AVAILABLE CLASSES:
submenu-dark = dark sub menu
-->
{% include menu.html %}
</div>
</header>
<!-- /Top Nav -->
</div>
<!-- REVOLUTION SLIDER -->
<section id="slider" class="fullwidthbanner-container roundedcorners">
<!--
Navigation Styles:
data-navigationStyle="" theme default navigation
data-navigationStyle="preview1"
data-navigationStyle="preview2"
data-navigationStyle="preview3"
data-navigationStyle="preview4"
Bottom Shadows
data-shadow="1"
data-shadow="2"
data-shadow="3"
Slider Height (do not use on fullscreen mode)
data-height="300"
data-height="350"
data-height="400"
data-height="450"
data-height="500"
data-height="550"
data-height="600"
data-height="650"
data-height="700"
data-height="750"
data-height="800"
-->
<div class="fullscreenbanner" data-navigationStyle="preview4">
<ul class="hide">
<!-- SLIDE -->
<li data-transition="random" data-slotamount="1" data-masterspeed="1000" data-saveperformance="off" data-title="Slide title 1" data-thumb="./assets/images/demo/150x99/27-min.jpg">
<img src="./assets/images/1x1.png" data-lazyload="./assets/images/demo/1200x800/27-min.jpg" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat" />
<div class="overlay dark-4"><!-- dark overlay [1 to 9 opacity] --></div>
<div class="tp-caption customin ltl tp-resizeme text_white"
data-x="center"
data-y="180"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1000"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10;">
<span class="weight-300">DEVELOPMENT / MARKETING / DESIGN / PHOTO</span>
</div>
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
data-x="center"
data-y="230"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1200"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10;">
WELCOME TO SMARTY
</div>
<div class="tp-caption customin ltl tp-resizeme small_light_white"
data-x="center"
data-y="350"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1400"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10; width: 750px; max-width: 750px; white-space: normal; text-align:center;">
Fabulas definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii propriae philosophia cu mea.
</div>
<div class="tp-caption customin ltl tp-resizeme"
data-x="center"
data-y="438"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1550"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 10;">
<a href="#purchase" class="btn btn-default btn-lg">
<span>Purchase Smarty Now</span>
</a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="fade" data-slotamount="1" data-masterspeed="1000" data-saveperformance="off" data-title="Slide title 2" data-thumb="./assets/images/demo/video/neuron_thumb.jpg">
<img src="./assets/images/1x1.png" data-lazyload="./assets/images/demo/video/neuron.jpg" alt="video" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat">
<div class="tp-caption tp-fade fadeout fullscreenvideo"
data-x="0"
data-y="0"
data-speed="1000"
data-start="1100"
data-easing="Power4.easeOut"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1500"
data-endeasing="Power4.easeIn"
data-autoplay="true"
data-autoplayonlyfirsttime="false"
data-nextslideatend="true"
data-volume="mute"
data-forceCover="1"
data-aspectratio="16:9"
data-forcerewind="on" style="z-index: 2;">
<div class="overlay dark-4"><!-- dark overlay [1 to 9 opacity] --></div>
<video class="fullvideo" preload="none" poster="./assets/images/demo/video/neuron.jpg">
<source src="./assets/images/demo/video/neuron.webm" type="video/webm" />
<source src="./assets/images/demo/video/neuron.mp4" type="video/mp4" />
</video>
</div>
<div class="tp-caption customin ltl tp-resizeme text_white"
data-x="center"
data-y="180"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1000"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 3;">
<span class="weight-300">YOUR FAVORITE MULTIPURPOSE TEMPLATE</span>
</div>
<div class="tp-caption customin ltl tp-resizeme large_bold_white"
data-x="center"
data-y="230"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1200"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 3;">
WELCOME TO SMARTY
</div>
<div class="tp-caption customin ltl tp-resizeme small_light_white"
data-x="center"
data-y="350"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1400"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 3; width: 750px; max-width: 750px; white-space: normal; text-align:center;">
Fabulas definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii propriae philosophia cu mea.
</div>
<div class="tp-caption customin ltl tp-resizeme"
data-x="center"
data-y="438"
data-customin="x:0;y:150;z:0;rotationZ:0;scaleX:1;scaleY:1;skewX:0;skewY:0;opacity:0;transformPerspective:200;transformOrigin:50% 0%;"
data-speed="800"
data-start="1550"
data-easing="easeOutQuad"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="1000"
data-endeasing="Power4.easeIn" style="z-index: 3;">
<a href="#purchase" class="btn btn-default btn-lg">
<span>Purchase Smarty Now</span>
</a>
</div>
</li>
<!-- SLIDE -->
<li data-transition="random" data-slotamount="1" data-masterspeed="1000" data-saveperformance="off" data-title="Slide title 3" data-thumb="./assets/images/demo/150x99/11-min.jpg">
<img src="./assets/images/1x1.png" data-lazyload="./assets/images/demo/1200x800/11-min.jpg" alt="" data-bgfit="cover" data-bgposition="center bottom" data-bgrepeat="no-repeat" />
<div class="overlay dark-4"><!-- dark overlay [1 to 9 opacity] --></div>
<div class="tp-caption very_large_text lfb ltt tp-resizeme"
data-x="right" data-hoffset="-100"
data-y="center" data-voffset="-100"
data-speed="600"
data-start="800"
data-easing="Power4.easeOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="500"
data-endeasing="Power4.easeIn">
RUN WILD
</div>
<div class="tp-caption medium_light_white lfb ltt tp-resizeme"
data-x="right" data-hoffset="-100"
data-y="center" data-voffset="10"
data-speed="600"
data-start="900"
data-easing="Power4.easeOut"
data-splitin="none"
data-splitout="none"
data-elementdelay="0.01"
data-endelementdelay="0.1"
data-endspeed="500"
data-endeasing="Power4.easeIn">
Happiness is an accident of nature,<br/>
a beautiful and flawless aberration.<br/>
<span style="font-size:24px;font-weight:400;">– Pat Conroy</span>
</div>
</li>
</ul>
</div>
</section>
<!-- /REVOLUTION SLIDER -->
<!-- Welcome -->
<section>
<div class="container">
<div class="text-center">
<h1>Welcome! World Of <span>Smarty</span>.</h1>
<h2 class="col-sm-10 col-sm-offset-1 nomargin-bottom weight-400">Clean, fully responsive, extemly flexible multipurpose template that allows you to create any website you like.</h2>
</div>
</div>
</section>
<!-- Welcome -->
<!-- Services -->
<section>
<div class="container">
<div class="row">
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="fa fa-tablet"></i>
<h2>FULLY REPOSNIVE</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-document"></i>
<h2>RTL SUPPORT</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-basket"></i>
<h2>MOBILE COMPATIBILE</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-briefcase"></i>
<h2>CLEAN CODE</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-megaphone"></i>
<h2>PREMIUM SLIDERS</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-flag"></i>
<h2>SIMPLE TO USE</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-puzzle"></i>
<h2>LIGHTWEIGHT</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-trophy"></i>
<h2>ADMIN INCLUDED</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<div class="box-icon box-icon-left">
<a class="box-icon-title" href="#">
<i class="et-layers"></i>
<h2>PARALLAX</h2>
</a>
<p class="text-muted">Lorem definitiones ei pri per recteque hendrerit scriptorem in errem scribentur mel fastidii.</p>
</div>
</div>
</div>
</div>
</section>
<!-- /Services -->
<!-- PARALLAX -->
<section class="parallax parallax-2 nopadding-bottom" style="background-image: url('assets/images/demo/wall3-min.jpg');">
<div class="overlay dark-4"><!-- dark overlay [0 to 9 opacity] --></div>
<div class="container">
<div class="text-center">
<h3 class="nomargin">Smarty Inside</h3>
<p class="font-lato weight-300 lead nomargin-top">We can't solve problems by using the same kind of thinking we used when we created them.</p>
</div>
<div class="margin-top-80 text-center">
<img class="img-responsive wow fadeInUp" data-wow-delay="0.4s" src="./assets/images/demo/browsers.png" alt="" />
</div>
</div>
</section>
<!-- /PARALLAX -->
<!-- Info -->
<section>
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-6">
<img class="img-responsive wow fadeIn" data-wow-delay="0.6s" src="./assets/images/demo/girl_looking-min.jpg" alt="" />
</div>
<div class="col-md-6 col-sm-6">
<header class="margin-bottom-60">
<h2>Smarty Website+Admin+RTL</h2>
<p class="lead font-lato">The most complete template, ever!</p>
</header>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus deserunt, nobis quae eos provident quidem. Quaerat expedita dignissimos perferendis, nihil quo distinctio eius architecto reprehenderit maiores.</p>
<p>Similique excepturi voluptates placeat ducimus delectus magnam tempore dolore dolorem quisquam porro modi voluptatum eum saepe dolorum ratione officia sint eos minus.</p>
<a class="btn btn-default btn-lg margin-top-30" href="#">EXPLORE SMARTY</a>
</div>
</div>
</div>
</section>
<!-- /Info -->
<!-- CALLOUT -->
<div class="alert alert-transparent bordered-bottom nomargin">
<div class="container">
<div class="row">
<div class="col-md-9 col-sm-12"><!-- left text -->
<h3>Call now at <span><strong>+800-565-2390</strong></span> and get 15% discount!</h3>
<p class="font-lato weight-300 size-20 nomargin-bottom">
We truly care about our users and our product.
</p>
</div><!-- /left text -->
<div class="col-md-3 col-sm-12 text-right"><!-- right btn -->
<a href="#purchase" rel="nofollow" target="_blank" class="btn btn-primary btn-lg">PURCHASE NOW</a>
</div><!-- /right btn -->
</div>
</div>
</div>
<!-- /CALLOUT -->
<!-- FOOTER -->
<footer id="footer">
<div class="container">
<div class="row">
<div class="col-md-3">
<!-- Footer Logo -->
<img class="footer-logo" src="./assets/images/logo-footer.png" alt="" />
<!-- Small Description -->
<p>Integer posuere erat a ante venenatis dapibus posuere velit aliquet.</p>
<!-- Contact Address -->
<address>
<ul class="list-unstyled">
<li class="footer-sprite address">
PO Box 21132<br>
Here Weare St, Melbourne<br>
Vivas 2355 Australia<br>
</li>
<li class="footer-sprite phone">
Phone: 1-800-565-2390
</li>
<li class="footer-sprite email">
<a href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</address>
<!-- /Contact Address -->
</div>
<div class="col-md-3">
<!-- Latest Blog Post -->
<h4 class="letter-spacing-1">LATEST NEWS</h4>
<ul class="footer-posts list-unstyled">
<li>
<a href="#">Donec sed odio dui. Nulla vitae elit libero, a pharetra augue</a>
<small>29 June 2015</small>
</li>
<li>
<a href="#">Nullam id dolor id nibh ultricies</a>
<small>29 June 2015</small>
</li>
<li>
<a href="#">Duis mollis, est non commodo luctus</a>
<small>29 June 2015</small>
</li>
</ul>
<!-- /Latest Blog Post -->
</div>
<div class="col-md-2">
<!-- Links -->
<h4 class="letter-spacing-1">EXPLORE SMARTY</h4>
<ul class="footer-links list-unstyled">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">Our Clients</a></li>
<li><a href="#">Our Pricing</a></li>
<li><a href="#">Smarty Tour</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<!-- /Links -->
</div>
<div class="col-md-4">
<!-- Newsletter Form -->
<h4 class="letter-spacing-1">KEEP IN TOUCH</h4>
<p>Subscribe to Our Newsletter to get Important News & Offers</p>
<form class="validate" action="php/newsletter.php" method="post" data-success="Subscribed! Thank you!" data-toastr-position="bottom-right">
<div class="input-group">
<span class="input-group-addon"><i class="fa fa-envelope"></i></span>
<input type="email" id="email" name="email" class="form-control required" placeholder="Enter your Email">
<span class="input-group-btn">
<button class="btn btn-success" type="submit">Subscribe</button>
</span>
</div>
</form>
<!-- /Newsletter Form -->
<!-- Social Icons -->
<div class="margin-top-20">
<a href="#" class="social-icon social-icon-border social-facebook pull-left" data-toggle="tooltip" data-placement="top" title="Facebook">
<i class="icon-facebook"></i>
<i class="icon-facebook"></i>
</a>
<a href="#" class="social-icon social-icon-border social-twitter pull-left" data-toggle="tooltip" data-placement="top" title="Twitter">
<i class="icon-twitter"></i>
<i class="icon-twitter"></i>
</a>
<a href="#" class="social-icon social-icon-border social-gplus pull-left" data-toggle="tooltip" data-placement="top" title="Google plus">
<i class="icon-gplus"></i>
<i class="icon-gplus"></i>
</a>
<a href="#" class="social-icon social-icon-border social-linkedin pull-left" data-toggle="tooltip" data-placement="top" title="Linkedin">
<i class="icon-linkedin"></i>
<i class="icon-linkedin"></i>
</a>
<a href="#" class="social-icon social-icon-border social-rss pull-left" data-toggle="tooltip" data-placement="top" title="Rss">
<i class="icon-rss"></i>
<i class="icon-rss"></i>
</a>
</div>
<!-- /Social Icons -->
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<ul class="pull-right nomargin list-inline mobile-block">
<li><a href="#">Terms & Conditions</a></li>
<li>•</li>
<li><a href="#">Privacy</a></li>
</ul>
© All Rights Reserved, Company LTD
</div>
</div>
</footer>
<!-- /FOOTER -->
</div>
<!-- /wrapper -->
<!-- SCROLL TO TOP -->
<a href="#" id="toTop"></a>
<!-- PRELOADER -->
<div id="preloader">
<div class="inner">
<span class="loader"></span>
</div>
</div><!-- /PRELOADER -->
<!-- JAVASCRIPT FILES -->
<script type="text/javascript">var plugin_path = 'assets/plugins/';</script>
<script type="text/javascript" src="./assets/plugins/jquery/jquery-2.2.3.min.js"></script>
<script type="text/javascript" src="./assets/js/scripts.js"></script>
<!-- STYLESWITCHER - REMOVE -->
<script async type="text/javascript" src="./assets/plugins/styleswitcher/styleswitcher.js"></script>
<!-- REVOLUTION SLIDER -->
<script type="text/javascript" src="./assets/plugins/slider.revolution/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="./assets/plugins/slider.revolution/js/jquery.themepunch.revolution.min.js"></script>
<script type="text/javascript" src="./assets/js/view/demo.revolution_slider.js"></script>
</body>
</html>
<!--
<html>
<head>
<link rel="stylesheet" href="{{site.baseurl}}/css/font-awesome.min.css">
</head>
<body>
<h1>{{site.title}}</h1>
<p>
{% include menu.html %}
</p>
{{content}}
{% include footer.html %}
<i class="fa fa-facebook" aria-hidden="true"></i>
</body>
</html>
-->