forked from harryjoy/bootstrap-cv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
922 lines (907 loc) · 33.7 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Harsh Raval</title>
<link href='http://fonts.googleapis.com/css?family=Gabriela' rel='stylesheet' type='text/css'>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js 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/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse"
data-target=".navbar-collapse">
<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="#">My Self</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="#main"><span class="glyphicon glyphicon-home"></span></a>
</li>
<li><a href="#summary">Profile</a>
</li>
<li><a href="#education">Education</a>
</li>
<li><a href="#work">Work</a>
</li>
<li><a href="#skills">Skills</a>
</li>
<li><a href="#note-worthy">Extra</a>
</li>
<li><a href="#contact">Conact</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Cool!</a>
</li>
</ul>
</div>
</div>
</div>
<div id="main" class="jumbotron main-header">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="images/user.png" alt="My Self" class="img-thumbnail my-image">
<h1>My Self</h1>
<p>Product Manager<br/> <em>@ MyThemes Pvt. Ltd.</em></p>
</div>
<div class="col-lg-6">
<h2> </h2>
<p>A cool line to say something about my self that will blow others mind!</p>
</div>
</div>
</div>
</div>
<div class="container marketing">
<div class="row headers-row">
<div class="col-lg-2 central">
<a href="#summary">
<span class="glyphicon glyphicon-leaf head-image green img-rounded"></span>
<h2 class="head-image-text">Profile</h2>
</a>
</div>
<div class="col-lg-2 central">
<a href="#education">
<span class="glyphicon glyphicon-book head-image yellow img-rounded"></span>
<h2 class="head-image-text">Education</h2>
</a>
</div>
<div class="col-lg-2 central">
<a href="#work">
<span class="glyphicon glyphicon-wrench head-image blue img-rounded"></span>
<h2 class="head-image-text">Work</h2>
</a>
</div>
<div class="col-lg-2 central">
<a href="#skills">
<span class="glyphicon glyphicon-stats head-image light-blue img-rounded"></span>
<h2 class="head-image-text">Skills</h2>
</a>
</div>
<div class="col-lg-2 central">
<a href="#note-worthy">
<span class="glyphicon glyphicon-edit head-image purple img-rounded"></span>
<h2 class="head-image-text">Extra</h2>
</a>
</div>
<div class="col-lg-2 central">
<a href="#contact">
<span class="glyphicon glyphicon-user head-image black img-rounded"></span>
<h2 class="head-image-text">Contact</h2>
</a>
</div>
</div>
<section id="summary" class="">
<div class="container">
<div class="summary">
<h2 class="heading">Profile</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean at mauris metus.
Duis interdum magna sit amet orci euismod id elementum metus posuere.
Nam at augue quam, sit amet tristique tellus.
Nunc enim eros, imperdiet ultrices rhoncus non, scelerisque vel justo.
Quisque convallis aliquam tincidunt.
Aenean nec lectus blandit lectus pellentesque posuere eget id nisl.
Praesent at neque libero.
Phasellus feugiat elementum arcu, non faucibus elit sodales nec.
Quisque convallis aliquam tincidunt.
Aenean nec lectus blandit lectus pellentesque posuere eget id nisl.
Mauris consectetur varius dui nec sollicitudin. Donec a enim justo.
Proin nec convallis tellus. Praesent at neque libero.
Phasellus feugiat elementum arcu, non faucibus elit sodales nec.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Nunc enim eros, imperdiet ultrices rhoncus non, scelerisque vel justo.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Nunc enim eros, imperdiet ultrices rhoncus non, scelerisque vel justo.
</p>
</div>
</div>
</section>
<section id="education" class="education">
<div class="container">
<div class="summary">
<h2 class="heading">Education</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Aenean at mauris metus.
Duis interdum magna sit amet orci euismod id elementum metus posuere.
Nam at augue quam, sit amet tristique tellus.
Nunc enim eros, imperdiet ultrices rhoncus non, scelerisque vel justo.
Quisque convallis aliquam tincidunt.
Aenean nec lectus blandit lectus pellentesque posuere eget id nisl.
</p>
<ul class="list-unstyled">
<li>
<h3 class="ed-title">
Master degree <span class="grade" data-toggle="tooltip" title="First Class">
<div class="progress grade-progress-bar">
<div class="progress-bar progress-bar-success"
role="progressbar" aria-valuenow="78" aria-valuemin="0"
aria-valuemax="100" style="width: 78%">
78%
</div>
</div></span>
</h3>
<p>Institute for masters - 2010</p></li>
<li>
<h3 class="ed-title">
Bachelor degree <span class="grade" data-toggle="tooltip" title="Second Class">
<div class="progress grade-progress-bar">
<div class="progress-bar progress-bar-warning"
role="progressbar" aria-valuenow="58" aria-valuemin="0"
aria-valuemax="100" style="width: 58%">
58%
</div>
</div></span>
</h3>
<p>Institute for Bachelors - 2006</p></li>
<li>
<h3 class="ed-title">
Bachelor degree <span class="grade" data-toggle="tooltip" title="First Class">
<div class="progress grade-progress-bar">
<div class="progress-bar progress-bar-success"
role="progressbar" aria-valuenow="87" aria-valuemin="0"
aria-valuemax="100" style="width: 87%">
87%
</div>
</div></span>
</h3>
<p>Institute for Bachelors - 2002</p></li>
</ul>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="summary">
<h2 class="heading">Trannings</h2>
<ul class="list-unstyled">
<li><span class="glyphicon glyphicon-bookmark tickmark"></span>
Took training in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Institute on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-bookmark tickmark"></span>
Took training in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Institute on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-bookmark tickmark"></span>
Took training in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Institute on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-bookmark tickmark"></span>
Took training in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Institute on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-bookmark tickmark"></span>
Took training in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Institute on 22 Feb 2012</i>
</li>
</ul>
</div>
</div>
<div class="col-lg-6">
<div class="summary">
<h2 class="heading">Certificates</h2>
<ul class="list-unstyled">
<li><span class="glyphicon glyphicon-ok tickmark"></span>
Certified in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Authority on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-ok tickmark"></span>
Certified in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Authority on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-ok tickmark"></span>
Certified in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Authority on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-ok tickmark"></span>
Certified in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Authority on 22 Feb 2012</i>
</li>
<li><span class="glyphicon glyphicon-ok tickmark"></span>
Certified in Something
<span class="edu-stars">
<span class="glyphicon glyphicon-star"></span>
</span>
<br />
<i class="edu-date">from Authority on 22 Feb 2012</i>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="work" class="work">
<div class="container">
<div class="summary">
<h2 class="heading">Work</h2>
<div class="row">
<div class="col-md-3">
<div class="work-summary-box">
<h4 class="ed-title">Product Manager <span class="right-side label label-warning">Current</span></h4>
<p>MyOwnDummyCompany Inc.<br/>July 2013 - present</p>
</div>
</div>
<div class="col-md-9">
<div class="work-desc-box">
<p>Lorem ipsum dolor sit amet, vix id bonorum tacimates, equidem petentium duo ut, usu illud feugait tincidunt ea.
Ex vitae deleniti cotidieque has. Vim ne odio constituam.
Harum alterum praesent ad vix, ei verterem lucilius sapientem vix. Nec ad explicari accommodare, veniam saperet pri id.</p>
<p>Cu vidit consetetur quo, accusata splendide ullamcorper his cu. Et cibo eruditi saperet vis, te per quot integre ponderum.
His posidonium <kbd>disputationi id</kbd>, ex amet porro oporteat pri.
Graecis oporteat id mei, ei commodo accusata molestiae pro.</p>
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
<p>Lorem ipsum dolor sit amet, vix id bonorum tacimates, equidem petentium duo ut, usu illud feugait tincidunt ea.</p>
<p>Cu vidit consetetur quo, accusata splendide ullamcorper his cu.
Et cibo eruditi saperet vis, te per quot integre ponderum.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="work-summary-box">
<h4 class="ed-title">Team lead</h4>
<p>MyOwnDummyCompany Inc.<br/>Feb 2010 - July 2013</p>
</div>
</div>
<div class="col-md-9">
<div class="work-desc-box">
<p>Eos augue quidam ocurreret at, etiam graeci putent ut vix. Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
<strong>Eam timeam reprehendunt</strong> et, eum cibo repudiandae ad.</p>
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
<p>Lorem ipsum dolor sit amet, vix id bonorum tacimates, equidem petentium duo ut, usu illud feugait tincidunt ea.</p>
<p>Cu vidit consetetur quo, accusata splendide ullamcorper his cu.
Et cibo eruditi saperet vis, te per quot integre ponderum.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="work-summary-box">
<h4 class="ed-title">No Buddy</h4>
<p>MyOwnDummyCompany Inc.<br/>July 2000 - Feb 2010</p>
</div>
</div>
<div class="col-md-9">
<div class="work-desc-box">
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
<p>Cu vidit consetetur <em>quo</em>, accusata splendide ullamcorper his cu.</p>
<p>Et cibo eruditi saperet vis, te per quot integre ponderum.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="skills">
<div class="container">
<div class="summary">
<h2 class="heading">Skills</h2>
<div class="row">
<div class="col-lg-4">
<canvas id="website-circle" class="guage-canvas"></canvas>
<p class="gauge-value-text">90</p>
<div class="panel panel-warning">
<div class="panel-heading">
<h3 class="panel-title">Website building</h3>
</div>
<div class="panel-body">
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
Some of work in category:
</div>
<!-- Table -->
<table class="table table-striped skills-table">
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
</table>
</div>
</div>
<div class="col-lg-4">
<canvas id="photoshop-circle" class="guage-canvas"></canvas>
<p class="gauge-value-text">80</p>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">Photoshop</h3>
</div>
<div class="panel-body">
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
Some of work in category:
</div>
<!-- Table -->
<table class="table table-striped skills-table">
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
</table>
</div>
</div>
<div class="col-lg-4">
<canvas id="other-circle" class="guage-canvas"></canvas>
<p class="gauge-value-text">85</p>
<div class="panel panel-info">
<div class="panel-heading">
<h3 class="panel-title">Other</h3>
</div>
<div class="panel-body">
<p>Sed ei falli scripta fastidii, tritani admodum vix ei, in sea sensibus sapientem.</p>
Some of work in category:
</div>
<!-- Table -->
<table class="table table-striped skills-table">
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
<tr>
<th>My Site</th>
<td><a href="#">www.mysite.com</a></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="note-worthy" class="note-worthy">
<div class="container">
<div class="summary">
<h2 class="heading">Extra</h2>
<p>Some extra cool things about my self.</p>
<p>
Eos augue quidam ocurreret at, etiam graeci putent ut vix.
Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
Eam timeam reprehendunt et, eum cibo repudiandae ad.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Pertinax eleifend abhorreant eos ex, cu sed oblique periculis, his simul posidonium eu.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Facilisis efficiantur quo ea, et aliquip accumsan phaedrum eam.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> Eos eu paulo corpora, pro simul audire dolores in.
</p>
<p>
<span class="glyphicon glyphicon-star"></span> At has cetero impedit.
</p>
</div>
</div>
</section>
<section id="blogs" class="blogs">
<div class="container">
<div class="summary">
<h2 class="heading">Blogs</h2>
<div class="col-lg-4 blog-body">
<h2 class="blog-header">My First Post</h2>
<img class="img thumbnail blog-img" src="images/blg-first.png"
alt="My First Post">
<p class="blog-details">
<span class="glyphicon glyphicon-calendar"></span> January 31, 2014 <span
class="glyphicon glyphicon-comment"></span> 1 <span
class="glyphicon glyphicon-thumbs-up"></span> 7
</p>
<div class="blog-summary">
<p>Pertinax eleifend abhorreant eos ex, cu sed oblique periculis, his simul posidonium eu.</p>
<p>
Eos augue quidam ocurreret at, etiam graeci putent ut vix.
Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
Eam timeam reprehendunt et, eum cibo repudiandae ad.
</p>
<p class="blog-read-more">
<a class="btn btn-small btn-danger" href="#" role="button">Read More »</a>
</p>
</div>
</div>
<div class="col-lg-4 blog-body">
<h2 class="blog-header">My Second Post</h2>
<img class="img thumbnail blog-img" src="images/blg-second.png"
alt="My Second Post">
<p class="blog-details">
<span class="glyphicon glyphicon-calendar"></span> January 23, 2014 <span
class="glyphicon glyphicon-comment"></span> 4 <span
class="glyphicon glyphicon-thumbs-up"></span> 4
</p>
<div class="blog-summary">
<p>Pertinax eleifend abhorreant eos ex, cu sed oblique periculis, his simul posidonium eu.</p>
<p>
Eos augue quidam ocurreret at, etiam graeci putent ut vix.
Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
Eam timeam reprehendunt et, eum cibo repudiandae ad.
</p>
<p class="blog-read-more">
<a class="btn btn-small btn-danger" href="#" role="button">Read More »</a>
</p>
</div>
</div>
<div class="col-lg-4 blog-body">
<h2 class="blog-header">My Third Post</h2>
<img class="img thumbnail blog-img" src="images/blg-first.png"
alt="My Third Post">
<p class="blog-details">
<span class="glyphicon glyphicon-calendar"></span> January 23, 2014 <span
class="glyphicon glyphicon-comment"></span> 0 <span
class="glyphicon glyphicon-thumbs-up"></span> 9
</p>
<div class="blog-summary">
<p>Pertinax eleifend abhorreant eos ex, cu sed oblique periculis, his simul posidonium eu.</p>
<p>
Eos augue quidam ocurreret at, etiam graeci putent ut vix.
Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
Eam timeam reprehendunt et, eum cibo repudiandae ad.
</p>
<p class="blog-read-more">
<a class="btn btn-small btn-danger" href="#" role="button">Read More »</a>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="opensource" class="opensource">
<div class="container">
<div class="summary">
<h2 class="heading">Open Source</h2>
<p>
Eos augue quidam ocurreret at, etiam graeci putent ut vix.
Mea ad dictas atomorum, eum at partiendo hendrerit similique.
Sit ex audiam option quaerendum, sit no tale scripta quaeque.
Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.
Eam timeam reprehendunt et, eum cibo repudiandae ad.
</p>
<p> </p>
<div class="row">
<div class="col-lg-3 blog-body">
<h2 class="blog-header">My Open Source</h2>
<p class="blog-details">
<span class="glyphicon glyphicon-tags"></span> JS, jQuery, CSS, HTML
</p>
<div class="blog-summary">
<p>Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.</p>
<p class="blog-read-more">
<a class="btn btn-small btn-info" href="#" role="button">Know More »</a>
</p>
</div>
</div>
<div class="col-lg-3 blog-body">
<h2 class="blog-header">My Open Source</h2>
<p class="blog-details">
<span class="glyphicon glyphicon-tags"></span> JS, jQuery, CSS, HTML
</p>
<div class="blog-summary">
<p>Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.</p>
<p class="blog-read-more">
<a class="btn btn-small btn-info" href="#" role="button">Know More »</a>
</p>
</div>
</div>
<div class="col-lg-3 blog-body">
<h2 class="blog-header">My Open Source</h2>
<p class="blog-details">
<span class="glyphicon glyphicon-tags"></span> JS, jQuery, CSS, HTML
</p>
<div class="blog-summary">
<p>Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.</p>
<p class="blog-read-more">
<a class="btn btn-small btn-info" href="#" role="button">Know More »</a>
</p>
</div>
</div>
<div class="col-lg-3 blog-body">
<h2 class="blog-header">My Open Source</h2>
<p class="blog-details">
<span class="glyphicon glyphicon-tags"></span> JS, jQuery, CSS, HTML
</p>
<div class="blog-summary">
<p>Invenire dissentias ei has, mel autem utinam appetere an, vim in expetenda elaboraret inciderint.</p>
<p class="blog-read-more">
<a class="btn btn-small btn-info" href="#" role="button">Know More »</a>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<div class="summary">
<h2 class="heading">Contact Me</h2>
<div class="row">
<div class="col-lg-6">
<address>
<h2 class="blog-header">My Self</h2>
First line, Second line<br>
City, State, Country 123456<br>
<abbr title="Mobile">M:</abbr> +XX 000xxx0000<br>
<abbr title="Email">E:</abbr> <a href="mailto:#">[email protected]</a> / <a href="mailto:#">[email protected]</a>
</address>
</div>
<div class="col-lg-3">
</div>
<div class="col-lg-3">
<h2 class="blog-header">Social</h2>
<div class="row">
<div class="col-lg-2">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-2">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-2">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
<div class="col-lg-2">
<img class="img-circle" src="images/social/pinterest.png"
alt="Pinterest">
</div>
<div class="col-lg-2">
<img class="img-circle" src="images/social/email.png"
alt="Email">
</div>
<div class="col-lg-2">
<img class="img-circle" src="images/social/rss-feeds.png"
alt="RSS">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="testimonials" class="testimonials">
<div class="container">
<div class="summary">
<h2 class="heading">Testimonials</h2>
<div class="row testimonial-user-row">
<div class="col-lg-3 testimonial-user">
<img src="images/user.png" alt="Agent L" class="img-circle user-image">
<h2>Agent L</h2>
<p class="testimonial-desg">Team Lead, MyOwnCompany Inc.</p>
<p>
<em>"Some cool things from Agent L.
Some cool things from Agent L.
Some cool things from Agent L."</em>
</p>
</div>
<div class="col-lg-3 testimonial-user">
<img src="images/user.png" alt="Agent P" class="img-circle user-image">
<h2>Agent P</h2>
<p class="testimonial-desg">Manager, MyOwnCompany Inc.</p>
<p>
<em>"Some cool things from Agent P.
Some cool things from Agent P.
Some cool things from Agent P."</em>
</p>
</div>
<div class="col-lg-3 testimonial-user">
<img src="images/user.png" alt="Agent J" class="img-circle user-image">
<h2>Agent J</h2>
<p class="testimonial-desg">Founder, MyOwnCompany Inc.</p>
<p>
<em>"Some cool things from Agent J.
Some cool things from Agent J.
Some cool things from Agent J."</em>
</p>
</div>
<div class="col-lg-3 testimonial-user">
<img src="images/user.png" alt="Agent K" class="img-circle user-image">
<h2>Agent K</h2>
<p class="testimonial-desg">Co-Founder, MyOwnCompany Inc.</p>
<p>
<em>"Some cool things from Agent K.
Some cool things from Agent K.
Some cool things from Agent K."</em>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="references" class="references">
<div class="container">
<div class="summary">
<h2 class="heading">References</h2>
<div class="row reference-user-row">
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent L" class="img-circle user-image">
<h2>Agent L</h2>
<p>Team Lead, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent P" class="img-circle user-image">
<h2>Agent P</h2>
<p>CEO, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent J" class="img-circle user-image">
<h2>Agent J</h2>
<p>Project Lead, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent K" class="img-circle user-image">
<h2>Agent K</h2>
<p>Manager, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent C" class="img-circle user-image">
<h2>Agent C</h2>
<p>Founder, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
<div class="col-lg-2 reference-user">
<img src="images/user.png" alt="Agent F" class="img-circle user-image">
<h2>Agent F</h2>
<p>Co-Founder, MyOwnCompany Inc.</p>
<div class="row reference-user-row">
<div class="col-lg-4">
<img class="img-circle" src="images/social/facebook.png"
alt="Facebook">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/twitter.png"
alt="Twitter">
</div>
<div class="col-lg-4">
<img class="img-circle" src="images/social/google-plus.png"
alt="Google Plus">
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<div id="footer">
<div class="container">
<p class="text-muted">
Be happy :)
</p>
<a id="toTop" class="back-to-top" href="#main"><span class="glyphicon glyphicon-arrow-up"></span></a>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.scrollTo.min.js"></script>
<script src="js/jquery.localScroll.min.js"></script>
<script src="js/scrollspy.js"></script>
<script src="js/tooltip.js"></script>
<script src="js/gauge.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>