@enure/jacklin 1.1.0 → 1.1.2
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 +37 -29
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;
|
|
@@ -73,35 +75,41 @@
|
|
|
73
75
|
</p>
|
|
74
76
|
</header>
|
|
75
77
|
<main>
|
|
76
|
-
<
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
{{#each work}}
|
|
85
|
-
<li class="WorkList-item">
|
|
86
|
-
<div class="WorkList-positionAt">
|
|
87
|
-
{{this.position}} at {{this.name}}
|
|
88
|
-
</div>
|
|
89
|
-
<div class="WorkList-dates">
|
|
90
|
-
{{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
91
|
-
</div>
|
|
92
|
-
<div class="WorkList-summary">
|
|
93
|
-
{{this.summary}}
|
|
94
|
-
</div>
|
|
95
|
-
{{#if this.highlights}}
|
|
96
|
-
<ul class="WorkList-highlights">
|
|
97
|
-
{{#each this.highlights}}
|
|
98
|
-
<li class="WorkList-highlight">{{this}}</li>
|
|
99
|
-
{{/each}}
|
|
100
|
-
</ul>
|
|
101
|
-
{{/if}}
|
|
102
|
-
</li>
|
|
78
|
+
<section>
|
|
79
|
+
<h2>Education</h2>
|
|
80
|
+
{{#each education}}
|
|
81
|
+
<ul>
|
|
82
|
+
<li>{{ this.institution }}</li>
|
|
83
|
+
<li>{{ this.area }}</li>
|
|
84
|
+
<li>{{ this.studyType }}</li>
|
|
85
|
+
</ul>
|
|
103
86
|
{{/each}}
|
|
104
|
-
</
|
|
87
|
+
</section>
|
|
88
|
+
<section>
|
|
89
|
+
<h2>Work History</h2>
|
|
90
|
+
<ul class="WorkList">
|
|
91
|
+
{{#each work}}
|
|
92
|
+
<li class="WorkList-item">
|
|
93
|
+
<div class="WorkList-positionAt">
|
|
94
|
+
{{this.position}} at {{this.name}}
|
|
95
|
+
</div>
|
|
96
|
+
<div class="WorkList-dates">
|
|
97
|
+
{{this.startDate}} - {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
98
|
+
</div>
|
|
99
|
+
<div class="WorkList-summary">
|
|
100
|
+
{{this.summary}}
|
|
101
|
+
</div>
|
|
102
|
+
{{#if this.highlights}}
|
|
103
|
+
<ul class="WorkList-highlights">
|
|
104
|
+
{{#each this.highlights}}
|
|
105
|
+
<li class="WorkList-highlight">{{this}}</li>
|
|
106
|
+
{{/each}}
|
|
107
|
+
</ul>
|
|
108
|
+
{{/if}}
|
|
109
|
+
</li>
|
|
110
|
+
{{/each}}
|
|
111
|
+
</ul>
|
|
112
|
+
</section>
|
|
105
113
|
</main>
|
|
106
114
|
</body>
|
|
107
115
|
</html>
|