-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathabout.html
76 lines (63 loc) · 2.44 KB
/
about.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
<div class="about row">
<div class="col-md-8">
<h2>About me</h2>
<p>BlaBlaBla BlaBlaBla BlaBlaBla BlaBlaBla BlaBlaBla BlaBlaBla BlaBlaBla BlaBlaBla</p>
<h2>Contact</h2>
<ul>
<li>Email:<a href="mailto:{{ site.email }}" target="_top">{{ site.email }}</a></li>
<li>GitHub:<a href="{{ site.github_url }}">{{ site.github_url }}</a></li>
</ul>
<h2>Skill Keywords</h2>
{% if site.skill_software_keywords %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Software Engineer Keywords</h3>
</div>
<div class="panel-body">
{% for keyword in site.skill_software_keywords %}
<button class="btn btn-default" type="button">{{ keyword }}</button>
{% endfor %}
</div>
</div>
{% endif %}
{% if site.skill_j2ee_keywords %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">J2EE Developer Keywords</h3>
</div>
<div class="panel-body">
{% for keyword in site.skill_j2ee_keywords %}
<button class="btn btn-default" type="button">{{ keyword }}</button>
{% endfor %}
</div>
</div>
{% endif %}
{% if site.skill_mobile_app_keywords %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Mobile Developer Keywords</h3>
</div>
<div class="panel-body">
{% for keyword in site.skill_mobile_app_keywords %}
<button class="btn btn-default" type="button">{{ keyword }}</button>
{% endfor %}
</div>
</div>
{% endif %}
{% if site.skill_web_keywords %}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Web Developer Keywords</h3>
</div>
<div class="panel-body">
{% for keyword in site.skill_web_keywords %}
<button class="btn btn-default" type="button">{{ keyword }}</button>
{% endfor %}
</div>
</div>
{% endif %}
</div>
<div class="col-md-4">
{% include sidebar-popular-repo.html %}
</div>
</div>