-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-parallax.html
1194 lines (1045 loc) · 72 KB
/
index-parallax.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>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<!--[if IE]><meta http-equiv="x-ua-compatible" content="IE=9" /><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ethanol Portfolio Template - Index Default</title>
<meta name="description" content="Ethanol is an Agency and Personal Portfolio Template built with bootstrap 3.3.2. This is created for a cause to support my uncle's campaign. Go and Donate at - https://life.indiegogo.com/fundraisers/medical-support-for-a-filipino-overseas-worker--3/x/10058181">
<meta name="keywords" content="portfolio, agency, bootstrap theme, mobile responsive, template, personal">
<meta name="author" content="ThemeForces.Com">
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/apple-touch-icon-114x114.png">
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="fonts/font-awesome/css/font-awesome.css">
<!-- Nivo Lightbox
================================================== -->
<link rel="stylesheet" href="css/nivo-lightbox.css" >
<link rel="stylesheet" href="css/nivo_lightbox_themes/default/default.css">
<!-- Slider
================================================== -->
<link href="css/owl.carousel.css" rel="stylesheet" media="screen">
<link href="css/owl.theme.css" rel="stylesheet" media="screen">
<!-- Stylesheet
================================================== -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- Google Fonts
================================================== -->
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/modernizr.custom.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Main Navigation
================================================== -->
<nav id="tf-menu" class="navbar navbar-default navbar-fixed-top">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="img/logo.png" alt="..."></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li><a href="#tf-home" class="scroll">Home</a></li>
<li><a href="#tf-services" class="scroll">Services</a></li>
<li><a href="#tf-about" class="scroll">About</a></li>
<li><a href="#tf-works" class="scroll">Works</a></li>
<li><a href="#tf-process" class="scroll">Process</a></li>
<li><a href="#tf-pricing" class="scroll">Pricing</a></li>
<li><a href="#tf-blog" class="scroll">Blog</a></li>
<li><a href="#tf-contact" class="scroll">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Header/Homepage
================================================== -->
<div id="tf-home" class="parallax">
<div class="bcg"
data-center="background-position: 50% 0px;"
data-top-bottom="background-position: 50% -300px;"
data-bottom-top="background-position: 50% 300px;"
data-anchor-target="#tf-home">
<div class="homeSlide">
<div class="container"> <!-- Container -->
<div class="content-heading text-center"> <!-- Input Your Home Content Here -->
<h1>Websites / Branding / Interactive</h1>
<p class="lead">We create beautiful, innovative and effective handcrafted brands & website.</p>
<a href="#tf-works" class="scroll goto-btn text-uppercase">View Our Works</a> <!-- Link to your portfolio section -->
</div><!-- End Input Your Home Content Here -->
</div> <!-- End Container -->
</div>
</div> <!-- Parallax-->
</div>
<!-- Intro Section
================================================== -->
<div id="tf-intro">
<div class="container"> <!-- container -->
<div class="row"> <!-- row -->
<div class="col-md-8 col-md-offset-2">
<img src="img/logo-w.png" class="intro-logo img-responsive" alt="free-template"> <!-- Your company logo in white -->
<p>Ethanol Portfolio Template is a clean and simple website designed layout for multi-purpose options, this is perfect for any web works. This Template built with bootstrap 3.3.2 and it is totally mobile resposnive. Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus..</p>
</div>
</div><!-- end row -->
</div><!-- end container -->
</div>
<!-- Service Section
================================================== -->
<div id="tf-services">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>What We Do With <span class="highlight"><strong>Love</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
<div class="row"> <!-- row -->
<div class="col-md-6 text-right"> <!-- Left Content Col 6 -->
<div class="media service"> <!-- Service #1 -->
<div class="media-body">
<h4 class="media-heading">Brand Identity</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="media-right media-middle">
<i class="fa fa-venus-mars"></i>
</div>
</div><!-- End Service #1 -->
<div class="media service"> <!-- Service #2 -->
<div class="media-body">
<h4 class="media-heading">Graphics Design</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="media-right media-middle">
<i class="fa fa-magic"></i>
</div>
</div><!-- End Service #2 -->
<div class="media service"> <!-- Service #3 -->
<div class="media-body">
<h4 class="media-heading">Videography</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
<div class="media-right media-middle">
<i class="fa fa-camera-retro"></i>
</div>
</div> <!-- End Service #3 -->
</div> <!-- End Left Content Col 6 -->
<div class="col-md-6"> <!-- Right Content Col 6 -->
<div class="media service"> <!-- Service #4 -->
<div class="media-left media-middle">
<i class="fa fa-bicycle"></i>
</div>
<div class="media-body">
<h4 class="media-heading">UI/UX Design</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
</div><!-- end Service #4 -->
<div class="media service"> <!-- Service #5 -->
<div class="media-left media-middle">
<i class="fa fa-android"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Application</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
</div> <!-- end Service #5 -->
<div class="media service"> <!-- Service #6 -->
<div class="media-left media-middle">
<i class="fa fa-line-chart"></i>
</div>
<div class="media-body">
<h4 class="media-heading">SEO/Online Marketing</h4>
<p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.</p>
</div>
</div> <!-- end Service #6 -->
</div><!-- end Right Content Col 6 -->
</div><!-- end row -->
</div><!-- end container -->
</div>
<!-- About Us Section
================================================== -->
<div id="tf-about">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>What To Know Us <span class="highlight"><strong>Better</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
</div><!-- end container -->
<div class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"><!-- container -->
<div class="row"> <!-- row -->
<div class="col-md-6"> <!-- left content col 6 -->
<div class="about-left-content text-center">
<div class="img-wrap"> <!-- profile image wrap -->
<div class="profile-img"> <!-- company profile details -->
<img src="http://placehold.it/800x650" class="img-responsive" alt="Image"> <!-- change link to your image for your company profile -->
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div><!-- end profile image wrap -->
<h2><span class="small">Developing</span> Amazing Things <br><span class="small">with Passion since 2012.</span></h2>
</div>
</div><!-- end left content col 6 -->
<div class="col-md-6"><!-- right content col 6 -->
<div class="about-right-content"> <!-- right content wrapper -->
<h4><strong>Professional Profile</strong></h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<div class="skills"> <!-- skills progress bar -->
<div class="skillset"> <!-- skill #1 -->
<p>UI/UX Design</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="90" aria-valuemin="0" aria-valuemax="100" style="width: 90%;">
<span class="sr-only">90% Complete</span>
</div>
</div>
</div><!-- end skill #1 -->
<div class="skillset"> <!-- skill #2 -->
<p>HTML5, CSS3, SASS</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="85" aria-valuemin="0" aria-valuemax="100" style="width: 85%;">
<span class="sr-only">85% Complete</span>
</div>
</div>
</div><!-- end skill #2 -->
<div class="skillset"> <!-- skill #3 -->
<p>WordPress</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="99" aria-valuemin="0" aria-valuemax="100" style="width: 99%;">
<span class="sr-only">99% Complete</span>
</div>
</div>
</div> <!-- end skill #3 -->
<div class="skillset"> <!-- skill #4 -->
<p>Graphic Design</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%;">
<span class="sr-only">70% Complete</span>
</div>
</div>
</div> <!-- end skill #4 -->
<div class="skillset"> <!-- skill #5 -->
<p>Marketing</p>
<div class="progress">
<div class="progress-bar" role="progressbar" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100" style="width: 50%;">
<span class="sr-only">50% Complete</span>
</div>
</div>
</div><!-- end skill #4 -->
</div> <!-- end skills progress bar -->
</div><!-- end right content wrapper -->
</div><!-- end right content col 6 -->
</div> <!-- end row -->
</div><!-- end container -->
<div id="tf-counter" class="text-center">
<div class="container">
<div class="row"> <!-- Row -->
<div class="counter">
<div class="col-xs-6 col-sm-4 col-md-2 col-md-2 col-md-offset-1 facts"><!-- counter #1 -->
<div class="count-box">
<i class="fa fa-thumbs-up"></i>
<h4 class="count">720</h4>
<p class="small">Happy Customers</p>
</div>
</div><!-- end counter #1 -->
<div class="col-xs-6 col-sm-4 col-md-2 facts"><!-- counter #2 -->
<div class="count-box">
<i class="fa fa-user"></i>
<h4 class="count">480</h4>
<p class="small">People Donated</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2 facts"> <!-- counter #3 -->
<div class="count-box">
<i class="fa fa-desktop"></i>
<h4 class="count">1253</h4>
<p class="small">People Participated</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2 facts"> <!-- counter #4 -->
<div class="count-box">
<i class="fa fa-dollar"></i>
<h4 class="count">4580</h4>
<p class="small">Donation Collected</p>
</div>
</div>
<div class="col-xs-6 col-sm-4 col-md-2 facts"> <!-- counter #5 -->
<div class="count-box last">
<i class="fa fa-line-chart"></i>
<h4 class="count">12853</h4>
<p class="small">Total Hits</p>
</div>
</div>
</div>
</div> <!-- End Row -->
</div>
</div>
</div> <!-- end fullwidth gray background -->
</div>
<!-- Team Section
================================================== -->
<div id="tf-team">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Awesome People Behind <span class="highlight"><strong>ethanol</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
<div id="team" class="owl-carousel owl-theme text-center"> <!-- team carousel wrapper -->
<div class="item"><!-- Team #1 -->
<div class="hover-bg"> <!-- Team Wrapper -->
<div class="hover-text off"> <!-- Hover Description -->
<p>Aliquet rutrum dui a varius. Mauris ornare tortor in eleifend blanditullam ut ligula et neque. Quis placerat dui. Duis lacinia nisi sit ansequat lorem nunc, nec bibendum erat volutpat ultricies.</p>
</div><!-- End Hover Description -->
<img src="img/team/01.jpg" alt="..." class="img-responsive"> <!-- Team Image -->
<div class="team-detail text-center">
<h3>Maria Shara</h3>
<p class="text-uppercase">Founder / CEO</p>
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div><!-- End Team Wrapper -->
</div><!-- End Team #1 -->
<div class="item"> <!-- Team #2 -->
<div class="hover-bg"> <!-- Team Wrapper -->
<div class="hover-text off"> <!-- Hover Description -->
<p>Praesent eget bibendum purus, quis placerat dui. Duis lacinia nisi sit ansequat lorem nunc, nec bibendum erat volutpat ultricies. Aliquet rutrum dui a varius. Mauris ornare tortor.</p>
</div> <!-- End Hover Description -->
<img src="img/team/02.jpg" alt="..." class="img-responsive"><!-- Team Image -->
<div class="team-detail text-center">
<h3>Jenn Pereira</h3>
<p class="text-uppercase">Senior Creative Director</p>
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div> <!-- End Team Wrapper -->
</div><!-- End Team #2 -->
<div class="item"> <!-- Team #3 -->
<div class="hover-bg"> <!-- Team Wrapper -->
<div class="hover-text off"> <!-- Hover Description -->
<p>Vivamus aliquet rutrum dui a varius. Mauris ornare tortor in eleifend blanditullam ut ligula et neque. Nec bibendum erat volutpat ultricies. Aliquet rutrum dui a varius. Mauris ornare tortor. </p>
</div> <!-- End Hover Description -->
<img src="img/team/01.jpg" alt="..." class="img-responsive"><!-- Team Image -->
<div class="team-detail text-center">
<h3>Serena William</h3>
<p class="text-uppercase">Senior Designer</p>
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div><!-- End Team Wrapper -->
</div><!-- End Team #3 -->
<div class="item"><!-- Team #4 -->
<div class="hover-bg"> <!-- Team Wrapper -->
<div class="hover-text off"> <!-- Hover Description -->
<p>Aliquet rutrum dui a varius. Mauris ornare tortor in eleifend blanditullam ut ligula et neque. Quis placerat dui. Duis lacinia nisi sit ansequat lorem nunc, nec bibendum erat volutpat ultricies.</p>
</div> <!-- End Hover Description -->
<img src="img/team/01.jpg" alt="..." class="img-responsive"> <!-- Team Image -->
<div class="team-detail text-center">
<h3>Maria Shara</h3>
<p class="text-uppercase">Founder / CEO</p>
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div> <!-- End Team Wrapper -->
</div><!-- End Team #4 -->
<div class="item"><!-- Team #5 -->
<div class="hover-bg"> <!-- Team Wrapper -->
<div class="hover-text off"> <!-- Hover Description -->
<p>Praesent eget bibendum purus, quis placerat dui. Duis lacinia nisi sit ansequat lorem nunc, nec bibendum erat volutpat ultricies. Aliquet rutrum dui a varius. Mauris ornare tortor.</p>
</div> <!-- End Hover Description -->
<img src="img/team/02.jpg" alt="..." class="img-responsive"> <!-- Team Image -->
<div class="team-detail text-center">
<h3>Jenn Pereira</h3>
<p class="text-uppercase">Senior Creative Director</p>
<ul class="list-inline social">
<li><a href="#" class="fa fa-facebook"></a></li> <!-- facebook link here -->
<li><a href="#" class="fa fa-twitter"></a></li> <!-- twitter link here -->
<li><a href="#" class="fa fa-google-plus"></a></li> <!-- google plus link here -->
</ul>
</div>
</div> <!-- End Team Wrapper -->
</div><!-- End Team #5 -->
</div> <!-- end team carousel wrapper -->
</div> <!-- container -->
</div>
<!-- Why Us/Features Section
================================================== -->
<div id="tf-features">
<div class="container">
<div class="section-header">
<h2>Great Products and <span class="highlight"><strong>Features</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
</div>
<div id="feature" class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"> <!-- container -->
<div class="row" role="tabpanel"> <!-- row -->
<div class="col-md-4 col-md-offset-1"> <!-- tab menu col 4 -->
<ul class="features nav nav-pills nav-stacked" role="tablist">
<li role="presentation" class="active"> <!-- feature tab menu #1 -->
<a href="#f1" aria-controls="f1" role="tab" data-toggle="tab">
<span class="fa fa-desktop"></span>
Internet Communication<br><small>sub title here</small>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #2 -->
<a href="#f2" aria-controls="f2" role="tab" data-toggle="tab">
<span class="fa fa-pencil"></span>
Branding and Development<br><small>sub title here</small>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #3 -->
<a href="#f3" aria-controls="f3" role="tab" data-toggle="tab">
<span class="fa fa-space-shuttle"></span>
Motion Graphics<br><small>sub title here</small>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #4 -->
<a href="#f4" aria-controls="f4" role="tab" data-toggle="tab">
<span class="fa fa-automobile"></span>
Mobile Application<br><small>sub title here</small>
</a>
</li>
<li role="presentation"> <!-- feature tab menu #5 -->
<a href="#f5" aria-controls="f5" role="tab" data-toggle="tab">
<span class="fa fa-institution"></span>
Relaible Company Analysis<br><small>sub title here</small>
</a>
</li>
</ul>
</div><!-- end tab menu col 4 -->
<div class="col-md-6"> <!-- right content col 6 -->
<!-- Tab panes -->
<div class="tab-content features-content"> <!-- tab content wrapper -->
<div role="tabpanel" class="tab-pane fade in active" id="f1"> <!-- feature #1 content open -->
<h4>Internet Communication</h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<img src="img/tab01.png" class="img-responsive" alt="...">
</div>
<div role="tabpanel" class="tab-pane fade" id="f2"> <!-- feature #2 content -->
<h4>Branding and Development</h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<img src="img/tab02.png" class="img-responsive" alt="...">
</div>
<div role="tabpanel" class="tab-pane fade" id="f3"> <!-- feature #3 content -->
<h4>Motion Graphics</h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<img src="img/tab03.png" class="img-responsive" alt="...">
</div>
<div role="tabpanel" class="tab-pane fade" id="f4"> <!-- feature #4 content -->
<h4>Mobile Application</h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<img src="img/tab04.png" class="img-responsive" alt="...">
</div>
<div role="tabpanel" class="tab-pane fade" id="f5"> <!-- feature #5 content -->
<h4>Relaible Company Analysis</h4>
<p>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec, tempor cursus vitae sit aliquet neque purus. Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent.</p>
<img src="img/tab05.png" class="img-responsive" alt="...">
</div>
</div> <!-- end tab content wrapper -->
</div><!-- end right content col 6 -->
</div> <!-- end row -->
</div> <!-- end container -->
</div><!-- end fullwidth gray background -->
</div>
<!-- Works Section
================================================== -->
<div id="tf-works">
<div class="container">
<div class="section-header">
<h2>Our Work is <span class="highlight"><strong>Incredible</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
<div class="text-center">
<ul class="list-inline cat"> <!-- Portfolio Filter Categories -->
<li><a href="#" data-filter="*" class="active">All</a></li>
<li><a href="#" data-filter=".web">Web</a></li>
<li><a href="#" data-filter=".brand">Branding</a></li>
<li><a href="#" data-filter=".app">Apps</a></li>
<li><a href="#" data-filter=".others">Others</a></li>
</ul><!-- End Portfolio Filter Categories -->
</div>
</div><!-- End Container -->
<div class="container-fluid"> <!-- fluid container -->
<div id="itemsWork" class="row text-center"> <!-- Portfolio Wrapper Row -->
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 nopadding brand others"> <!-- Works #1 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Logo Identity Design" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a> <!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/01.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div><!-- end Works #1 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 nopadding apps"> <!-- Works #2 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Mobile Application" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/02.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div><!-- end Works #2 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 nopadding others brand"><!-- Works #3 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/03.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div><!-- end Works #3 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 col-lg-3 nopadding others web"> <!-- Works #4 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/04.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div> <!-- end Works #4 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 nopadding web others"> <!-- Works #5 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/05.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div> <!-- end Works #5 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 nopadding app"> <!-- Works #6 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/06.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div><!-- end Works #6 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 nopadding web brand"><!-- Works #7 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/07.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div><!-- end Works #7 col 3 -->
<div class="col-xs-12 col-sm-6 col-md-3 nopadding app"> <!-- Works #8 col 3 -->
<div class="box">
<div class="hover-bg">
<div class="hover-text off">
<a title="Freedom Project #1" href="img/portfolio/[email protected]" data-lightbox-gallery="gallery1" data-lightbox-hidpi="img/portfolio/[email protected]">
<i class="fa fa-expand"></i>
</a>
<a href="#"><i class="fa fa-chain"></i></a><!-- change # with your url to link it to another page -->
</div>
<img src="img/portfolio/08.jpg" class="img-responsive" alt="Image"> <!-- Portfolio Image -->
</div>
</div>
</div> <!-- end Works #8 col 3 -->
</div> <!-- End Row -->
</div> <!-- End Container-Fluid -->
</div>
<!-- Process Section
================================================== -->
<div id="tf-process">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Our Best <span class="highlight"><strong>WorkFlow</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
</div><!-- end container -->
<div class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"><!-- container -->
<div class="vline"></div> <!-- Vertical Line -->
<div id="process" class="row"> <!-- row -->
<div class="col-md-10 col-md-offset-1">
<div class="media process"> <!-- Process #1 -->
<div class="media-right media-middle">
<i class="fa fa-search-plus"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Research</h4>
<p>Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent, pede etiam. Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio.</p>
</div>
</div><!-- Process #1 -->
<div class="media process"> <!-- Process #2 -->
<div class="media-right media-middle">
<i class="fa fa-wrench"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Design and Develop</h4>
<p>Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent, pede etiam. Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio.</p>
</div>
</div><!-- Process #2 -->
<div class="media process"> <!-- Process #3 -->
<div class="media-right media-middle">
<i class="fa fa-flask"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Testing and Refine</h4>
<p>Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent, pede etiam. Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio.</p>
</div>
</div><!-- Process #3 -->
<div class="media process"> <!-- Process #4 -->
<div class="media-right media-middle">
<i class="fa fa-truck"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Launch</h4>
<p>Ultrices lacus proin conubia dictum tempus, tempor pede vitae faucibus, sem auctor, molestie diam dictum aliquam. Dolor leo, ridiculus est ut cubilia nec, fermentum arcu praesent, pede etiam. Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio.</p>
</div>
</div><!-- Process #4 -->
</div>
</div> <!-- end row -->
</div><!-- end container -->
</div> <!-- end fullwidth gray background -->
</div>
<!-- Pricing Section
================================================== -->
<div id="tf-pricing">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Choose The Best <span class="highlight"><strong>Pricing</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
<div class="row"> <!-- outer row -->
<div class="col-md-10 col-md-offset-1"> <!-- col 10 with offset 1 to centered -->
<div class="row"> <!-- nested row -->
<div class="col-md-4 nopadding"><!-- Price table #1 -->
<div class="panel panel-default price"> <!-- pricing table wrapper -->
<div class="panel-heading">Basic Plan</div>
<div class="panel-body">
<h1><sup>$</sup>25<small>/mon</small></h1> <!-- Plan Price -->
</div>
<!-- Plan Feature Lists -->
<ul class="list-unstyled">
<li>60 Users</li>
<li>Unlimited Forums</li>
<li>Unlimited Reports</li>
<li>3,000 Entries per Month</li>
<li>200 MB Storage</li>
<li>
<button type="button" class="btn btn-primary btn-block tf-btn">Get Started Now</button>
<small class="text-uppercase">30 Days Free Trial</small>
</li>
</ul><!-- end Plan Feature Lists -->
</div><!-- end pricing table wrapper -->
</div><!-- end Price table #1 -->
<div class="col-md-4 nopadding"><!-- Price table #2 -->
<div class="panel panel-default price featured"><!-- pricing table wrapper -->
<div class="panel-heading">Best Plan</div>
<div class="panel-body">
<h1><sup>$</sup>49<small>/mon</small></h1><!-- Plan Price -->
</div>
<!-- Plan Feature Lists -->
<ul class="list-unstyled">
<li>60 Users</li>
<li>Unlimited Forums</li>
<li>Unlimited Reports</li>
<li>3,000 Entries per Month</li>
<li>200 MB Storage</li>
<li>
<button type="button" class="btn btn-primary btn-block tf-btn color">Get Started Now</button>
<small class="text-uppercase">30 Days Free Trial</small>
</li>
</ul><!-- end Plan Feature Lists -->
</div><!-- end pricing table wrapper -->
</div><!-- end Price table #2 -->
<div class="col-md-4 nopadding"> <!-- Price table #3 -->
<div class="panel panel-default price"> <!-- pricing table wrapper -->
<div class="panel-heading">Premium Plan</div>
<div class="panel-body">
<h1><sup>$</sup>99<small>/mon</small></h1><!-- Plan Price -->
</div>
<!-- Plan Feature Lists -->
<ul class="list-unstyled">
<li>60 Users</li>
<li>Unlimited Forums</li>
<li>Unlimited Reports</li>
<li>3,000 Entries per Month</li>
<li>200 MB Storage</li>
<li>
<button type="button" class="btn btn-primary btn-block tf-btn">Get Started Now</button>
<small class="text-uppercase">30 Days Free Trial</small>
</li>
</ul><!-- end Plan Feature Lists -->
</div><!-- end pricing table wrapper -->
</div><!-- end Price table #3 -->
</div> <!-- end nested row -->
</div> <!-- end col 10 with offset 1 to centered -->
</div> <!-- end outer row -->
</div><!-- end container -->
</div>
<!-- Blog Section
================================================== -->
<div id="tf-blog">
<div class="container"> <!-- container -->
<div class="section-header">
<h2>Latest from the <span class="highlight"><strong>Blog</strong></span></h2>
<h5><em>We design and build functional and beautiful websites</em></h5>
<div class="fancy"><span><img src="img/favicon.ico" alt="..."></span></div>
</div>
</div>
<div id="blog-post" class="gray-bg"> <!-- fullwidth gray background -->
<div class="container"><!-- container -->
<div class="row"> <!-- row -->
<div class="col-md-6"> <!-- Left content col 6 -->
<div class="post-wrap"> <!-- Post Wrapper -->
<div class="media post"> <!-- post wrap -->
<div class="media-left">
<a href="#"> <!-- link to your post single page -->
<img class="media-object" src="http://placehold.it/120x150" alt="..."> <!-- Your Post Image -->
</a>
</div>
<div class="media-body">
<p class="small">January 14, 2015</p>
<a href="#">
<h5 class="media-heading"><strong>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec</strong></h5>
</a>
<p>Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio. Diam nibh diam, quam elit, libero nostra ut. Pellentesque vehicula. Eget sed, dapibus </p>
</div>
</div><!-- end post wrap -->
<div class="post-meta"> <!-- Meta details -->
<ul class="list-inline metas pull-left"> <!-- post metas -->
<li><a href="#">by Rudhi Design</a></li> <!-- meta author -->
<li><a href="#">20 Comments</a></li> <!-- meta comments -->
<li><a href="#">Read More</a></li> <!-- read more link -->
</ul>
<ul class="list-inline meta-detail pull-right"> <!-- user meta interaction -->
<li><a href="#"><i class="fa fa-heart"></i></a> 50</li> <!-- like button -->
<li><i class="fa fa-eye"></i> 110</li> <!-- no. of views -->
</ul>
</div><!-- end Meta details -->
</div><!-- end Post Wrapper -->
<div class="post-wrap"> <!-- Post Wrapper -->
<div class="media post"> <!-- post wrap -->
<div class="media-left">
<a href="#"> <!-- link to your post single page -->
<img class="media-object" src="http://placehold.it/120x150" alt="..."> <!-- Your Post Image -->
</a>
</div>
<div class="media-body">
<p class="small">January 14, 2015</p>
<a href="#">
<h5 class="media-heading"><strong>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec</strong></h5>
</a>
<p>Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio. Diam nibh diam, quam elit, libero nostra ut. Pellentesque vehicula. Eget sed, dapibus </p>
</div>
</div><!-- end post wrap -->
<div class="post-meta"> <!-- Meta details -->
<ul class="list-inline metas pull-left"> <!-- post metas -->
<li><a href="#">by Rudhi Design</a></li> <!-- meta author -->
<li><a href="#">20 Comments</a></li> <!-- meta comments -->
<li><a href="#">Read More</a></li> <!-- read more link -->
</ul>
<ul class="list-inline meta-detail pull-right"> <!-- user meta interaction -->
<li><a href="#"><i class="fa fa-heart"></i></a> 50</li> <!-- like button -->
<li><i class="fa fa-eye"></i> 110</li> <!-- no. of views -->
</ul>
</div><!-- end Meta details -->
</div><!-- end Post Wrapper -->
<div class="post-wrap"> <!-- Post Wrapper -->
<div class="media post"> <!-- post wrap -->
<div class="media-left">
<a href="#"> <!-- link to your post single page -->
<img class="media-object" src="http://placehold.it/120x150" alt="..."> <!-- Your Post Image -->
</a>
</div>
<div class="media-body">
<p class="small">January 14, 2015</p>
<a href="#">
<h5 class="media-heading"><strong>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec</strong></h5>
</a>
<p>Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio. Diam nibh diam, quam elit, libero nostra ut. Pellentesque vehicula. Eget sed, dapibus </p>
</div>
</div><!-- end post wrap -->
<div class="post-meta"> <!-- Meta details -->
<ul class="list-inline metas pull-left"> <!-- post metas -->
<li><a href="#">by Rudhi Design</a></li> <!-- meta author -->
<li><a href="#">20 Comments</a></li> <!-- meta comments -->
<li><a href="#">Read More</a></li> <!-- read more link -->
</ul>
<ul class="list-inline meta-detail pull-right"> <!-- user meta interaction -->
<li><a href="#"><i class="fa fa-heart"></i></a> 50</li> <!-- like button -->
<li><i class="fa fa-eye"></i> 110</li> <!-- no. of views -->
</ul>
</div><!-- end Meta details -->
</div><!-- end Post Wrapper -->
</div> <!-- end Left content col 6 -->
<div class="col-md-6"> <!-- right content col 6 -->
<div class="post-wrap"> <!-- Post Wrapper -->
<div class="media post"> <!-- post wrap -->
<div class="media-left">
<a href="#"> <!-- link to your post single page -->
<img class="media-object" src="http://placehold.it/120x150" alt="..."> <!-- Your Post Image -->
</a>
</div>
<div class="media-body">
<p class="small">January 14, 2015</p>
<a href="#">
<h5 class="media-heading"><strong>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec</strong></h5>
</a>
<p>Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio. Diam nibh diam, quam elit, libero nostra ut. Pellentesque vehicula. Eget sed, dapibus </p>
</div>
</div><!-- end post wrap -->
<div class="post-meta"> <!-- Meta details -->
<ul class="list-inline metas pull-left"> <!-- post metas -->
<li><a href="#">by Rudhi Design</a></li> <!-- meta author -->
<li><a href="#">20 Comments</a></li> <!-- meta comments -->
<li><a href="#">Read More</a></li> <!-- read more link -->
</ul>
<ul class="list-inline meta-detail pull-right"> <!-- user meta interaction -->
<li><a href="#"><i class="fa fa-heart"></i></a> 50</li> <!-- like button -->
<li><i class="fa fa-eye"></i> 110</li> <!-- no. of views -->
</ul>
</div><!-- end Meta details -->
</div><!-- end Post Wrapper -->
<div class="post-wrap"> <!-- Post Wrapper -->
<div class="media post"> <!-- post wrap -->
<div class="media-left">
<a href="#"> <!-- link to your post single page -->
<img class="media-object" src="http://placehold.it/120x150" alt="..."> <!-- Your Post Image -->
</a>
</div>
<div class="media-body">
<p class="small">January 14, 2015</p>
<a href="#">
<h5 class="media-heading"><strong>Vel donec et scelerisque vestibulum. Condimentum aliquam, mollit magna velit nec</strong></h5>
</a>
<p>Tempor vestibulum turpis id ligula mi mattis. Eget arcu vitae mauris amet odio. Diam nibh diam, quam elit, libero nostra ut. Pellentesque vehicula. Eget sed, dapibus </p>
</div>
</div><!-- end post wrap -->
<div class="post-meta"> <!-- Meta details -->
<ul class="list-inline metas pull-left"> <!-- post metas -->
<li><a href="#">by Rudhi Design</a></li> <!-- meta author -->
<li><a href="#">20 Comments</a></li> <!-- meta comments -->
<li><a href="#">Read More</a></li> <!-- read more link -->
</ul>
<ul class="list-inline meta-detail pull-right"> <!-- user meta interaction -->