-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebPage3.html
121 lines (94 loc) · 3.51 KB
/
webPage3.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="vierwport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style3.css" rel="stylesheet">
<script src="js/jQuery.min.js"></script>
<script src="js/handlebars-v4.0.5.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row content">
<!--left side-->
<div class="col-sm-3 sidenav">
<img src="https://avatars3.githubusercontent.com/u/20400970?v=3&u=fd92c32a0f5765e89a4ede55d6b6602cad6adbaa&s=140" class="img-rounded"
width= 100%; alt= "Avatar">
<h4>Luan de Souza de Paiva</h4><br>
<p><i class="glyphicon glyphicon-briefcase" style="color:#41c99e"></i> Computer Engeneer</p>
<p><i class=""></i></p>
<p><i class=""></i>[email protected]</p>
<p><i class=""></i>12334455</p>
<hr>
<h4 id="skills"><span class="glyphicon glyphicon-wrench" style="color:#41c99e"></span> Skills</h4>
<div id="skills-replace"></div>
<script id="template-3" type="text/x-handlebars-template">
{{#each this}}
<div id="myProgress" class="progress">
<div id="myBar" class="progress-bar progress-bar-custom" role="progressbar" aria-valuenow="{{this.value}}" aria-valuemin="0" aria-valuemax="100" style="width:{{this.value}}%" >
{{this.skillName}}
</div>
</div>
{{/each}}
</script>
<h4 id="languages"><span class="glyphicon glyphicon-bullhorn" style="color:#41c99e"></span> Languages</h4>
<div class="progress" >
<div id="language1Bar" class="progress-bar progress-bar-custom" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="width: 70%">English</div>
</div>
<div class="progress">
<div id= "language2Bar" class="progress-bar progress-bar-custom" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" >Portuguese</div>
</div><hr>
<h4 id="hobbies"><span class="glyphicon glyphicon-sunglasses" style="color:#41c99e"></span> Hobbies</h4>
<span class="label label-info">Basketball</span>
<span class="label label-info">Guitar</span>
<span class="label label-info">Inventions</span>
<span class="label label-info">Listen Music</span>
</div>
<!--center-->
<script id="template-1" type="text/x-handlebars-template">
<div class="col-sm-8 sidearticle">
<h2>
<span class="glyphicon glyphicon-{{icon}}" style="color:#41c99e"></span> {{title}}
</h2>
<p>
{{content}}
</p>
<p>
{{content2}}
</p>
<br>
<br>
</div>
</script>
<div id="about"></div>
<div id="qualities"></div>
<div id="education"></div>
<div class="col-sm-8 sidearticle">
<h2>
<span class="glyphicon glyphicon-globe" style="color:#41c99e"></span> Work Experiences
</h2>
<script id="template-2" type="text/x-handlebars-template">
{{#each this}}
<h3>{{this.subTitle}}</h3>
<i>{{this.since}}</i>
<p>{{this.taskTitle}}</p>
<ul>
{{#each mainlyTasks}}
<li>{{this}}</li>
{{/each}}
</ul>
{{/each}}
</script>
<div id="experiences"></div>
<div id="experiences2"></div>
</div>
</div>
</div>
<footer class="container-fluid">
<p>Luan de Souza de Paiva</p>
<p><a href="#about">Came back to About me</a></p>
</footer>
<script src="js/main.js"></script>
</body>