-
Notifications
You must be signed in to change notification settings - Fork 0
/
template-about.php
executable file
·68 lines (54 loc) · 2.24 KB
/
template-about.php
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
<?
/*
Name: About
*/
theme::part('partials/header', array( 'title'=>'About'));
theme::part('partials/hero'); ?>
<div class="container pt">
<div class="row mt centered">
<div class="lg-3">
<span class="glyphicon glyphicon-book"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="lg-3">
<span class="glyphicon glyphicon-user"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="lg-3">
<span class="glyphicon glyphicon-fire"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
<div class="lg-3">
<span class="glyphicon glyphicon-globe"></span>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="row mt">
<div class="lg-6">
<h4>THE THINKING</h4>
<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source.</p>
</div>
<div class="lg-6">
<h4>THE SKILLS</h4>
Wordpress
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">60% Complete</span>
</div>
</div>
Photoshop
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">80% Complete</span>
</div>
</div>
HTML + CSS
<div class="progress">
<div class="progress-bar progress-bar-theme" role="progressbar" aria-valuenow="95" aria-valuemin="0" aria-valuemax="100" style="width: 60%;">
<span class="sr-only">95% Complete</span>
</div>
</div>
</div>
</div>
</div>
<? theme::part('partials/footer') ?>