-
Notifications
You must be signed in to change notification settings - Fork 1
/
cv.php
123 lines (87 loc) · 1.83 KB
/
cv.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
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
<?php
$id = 'cv';
$title = 'CV';
include('includes/start.php');
?>
<script id="tmpl-cv" type="text/x-handlebars-template">
<header>
<h2>Experience</h2>
</header>
{{#each jobs}}
<article>
<header class="row">
<div class="col-md-8">
<h3>{{startDate}} - {{endDate}}</h3>
<h4>{{company}}, {{location}}</h4>
<h5>{{jobTitle}}</h5>
</div>
{{#if image}}
<img class="col-md-4" src="/media/images/{{image}}" alt="{{company}}">
{{/if}}
</header>
{{#if roles}}
<header>
<h4>Achievements and Responsibilities
</header>
<ul>
{{#each roles}}
<li>{{this}}</li>
{{/each}}
</ul>
{{/if}}
{{#if training}}
<header>
<h4>Training Courses</h4>
</header>
<ul>
{{#each training}}
<li>{{name}}, {{provider}}</li>
{{/each}}
</ul>
{{/if}}
</article>
{{/each}}
<header>
<h2>Education</h2>
</header>
{{#each education}}
<article>
<header class="row">
<div class="col-md-8">
<h3>{{startDate}} - {{endDate}}</h3>
<h4>{{institution}}</h4>
{{#if qualification}}
<h5>{{qualification}}</h5>
{{/if}}
</div>
{{#if image}}
<img class="col-md-4" src="/media/images/{{image}}" alt="{{company}}">
{{/if}}
</header>
{{#if results}}
<a class="more btn-link">See Results</a>
<section class="results collapse">
{{#each results}}
<article>
<header>
<h6>{{name}}</h6>
</header>
<ul>
{{#each items}}
<li>
{{name}}
{{#if grade}}
- {{grade}}
{{/if}}
</li>
{{/each}}
</ul>
</article>
{{/each}}
</section>
{{/if}}
</article>
{{/each}}
</script>
<section id="cv"></section>
<?php include('includes/footer.php'); ?>