@enure/jacklin 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template.handlebars +41 -32
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -12,9 +12,11 @@
|
|
|
12
12
|
font-size: 14px;
|
|
13
13
|
}
|
|
14
14
|
main {
|
|
15
|
-
margin-top: 48px;
|
|
16
15
|
max-width: 800px;
|
|
17
16
|
}
|
|
17
|
+
main > section {
|
|
18
|
+
margin-top: 48px;
|
|
19
|
+
}
|
|
18
20
|
h1,h2 {
|
|
19
21
|
font-size: 14px;
|
|
20
22
|
margin: 0;
|
|
@@ -24,6 +26,9 @@
|
|
|
24
26
|
margin: 0;
|
|
25
27
|
padding: 0;
|
|
26
28
|
}
|
|
29
|
+
.EducationList {
|
|
30
|
+
margin-top: 8px;
|
|
31
|
+
}
|
|
27
32
|
.WorkList-item {
|
|
28
33
|
margin-top: 32px;
|
|
29
34
|
}
|
|
@@ -62,7 +67,7 @@
|
|
|
62
67
|
<h1>
|
|
63
68
|
{{ basics.name }}
|
|
64
69
|
</h1>
|
|
65
|
-
<ul>
|
|
70
|
+
<ul class="EducationList">
|
|
66
71
|
<li>{{ basics.email }}</li>
|
|
67
72
|
<li>{{ basics.phone }}</li>
|
|
68
73
|
<li>{{ basics.location.address }}</li>
|
|
@@ -73,37 +78,41 @@
|
|
|
73
78
|
</p>
|
|
74
79
|
</header>
|
|
75
80
|
<main>
|
|
76
|
-
<
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
<
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
<h2>Work History</h2>
|
|
85
|
-
<ul class="WorkList">
|
|
86
|
-
{{#each work}}
|
|
87
|
-
<li class="WorkList-item">
|
|
88
|
-
<div class="WorkList-positionAt">
|
|
89
|
-
{{this.position}} at {{this.name}}
|
|
90
|
-
</div>
|
|
91
|
-
<div class="WorkList-dates">
|
|
92
|
-
{{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
93
|
-
</div>
|
|
94
|
-
<div class="WorkList-summary">
|
|
95
|
-
{{this.summary}}
|
|
96
|
-
</div>
|
|
97
|
-
{{#if this.highlights}}
|
|
98
|
-
<ul class="WorkList-highlights">
|
|
99
|
-
{{#each this.highlights}}
|
|
100
|
-
<li class="WorkList-highlight">{{this}}</li>
|
|
101
|
-
{{/each}}
|
|
102
|
-
</ul>
|
|
103
|
-
{{/if}}
|
|
104
|
-
</li>
|
|
81
|
+
<section>
|
|
82
|
+
<h2>Education</h2>
|
|
83
|
+
{{#each education}}
|
|
84
|
+
<ul>
|
|
85
|
+
<li>{{ this.institution }}</li>
|
|
86
|
+
<li>{{ this.area }}</li>
|
|
87
|
+
<li>{{ this.studyType }}</li>
|
|
88
|
+
</ul>
|
|
105
89
|
{{/each}}
|
|
106
|
-
</
|
|
90
|
+
</section>
|
|
91
|
+
<section>
|
|
92
|
+
<h2>Work History</h2>
|
|
93
|
+
<ul class="WorkList">
|
|
94
|
+
{{#each work}}
|
|
95
|
+
<li class="WorkList-item">
|
|
96
|
+
<div class="WorkList-positionAt">
|
|
97
|
+
{{this.position}} at {{this.name}}
|
|
98
|
+
</div>
|
|
99
|
+
<div class="WorkList-dates">
|
|
100
|
+
{{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
101
|
+
</div>
|
|
102
|
+
<div class="WorkList-summary">
|
|
103
|
+
{{this.summary}}
|
|
104
|
+
</div>
|
|
105
|
+
{{#if this.highlights}}
|
|
106
|
+
<ul class="WorkList-highlights">
|
|
107
|
+
{{#each this.highlights}}
|
|
108
|
+
<li class="WorkList-highlight">{{this}}</li>
|
|
109
|
+
{{/each}}
|
|
110
|
+
</ul>
|
|
111
|
+
{{/if}}
|
|
112
|
+
</li>
|
|
113
|
+
{{/each}}
|
|
114
|
+
</ul>
|
|
115
|
+
</section>
|
|
107
116
|
</main>
|
|
108
117
|
</body>
|
|
109
118
|
</html>
|