@enure/jacklin 1.2.5 → 1.3.0
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 +40 -24
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -21,15 +21,17 @@
|
|
|
21
21
|
h1, h2 {
|
|
22
22
|
font-size: 14px;
|
|
23
23
|
font-weight: 500;
|
|
24
|
-
margin: 0;
|
|
24
|
+
margin: 0 0 16px;
|
|
25
25
|
}
|
|
26
26
|
.BasicsList {
|
|
27
27
|
padding: 0;
|
|
28
|
+
margin: 0 0 16px;
|
|
28
29
|
list-style-type: none;
|
|
29
|
-
margin-bottom: 32px;
|
|
30
30
|
}
|
|
31
31
|
.EducationList {
|
|
32
32
|
list-style-type: none;
|
|
33
|
+
padding: 0;
|
|
34
|
+
margin: 0;
|
|
33
35
|
}
|
|
34
36
|
.WorkList {
|
|
35
37
|
list-style-type: none;
|
|
@@ -37,7 +39,7 @@
|
|
|
37
39
|
padding: 0;
|
|
38
40
|
}
|
|
39
41
|
.WorkList-item {
|
|
40
|
-
margin-top:
|
|
42
|
+
margin-top: 16px;
|
|
41
43
|
page-break-inside: avoid;
|
|
42
44
|
}
|
|
43
45
|
.WorkList-dates {
|
|
@@ -48,15 +50,15 @@
|
|
|
48
50
|
font-weight: 500;
|
|
49
51
|
}
|
|
50
52
|
.WorkList-summary {
|
|
51
|
-
margin-top:
|
|
53
|
+
margin-top: 16px;
|
|
52
54
|
}
|
|
53
55
|
.SummaryList {
|
|
54
56
|
list-style-type: "· ";
|
|
55
57
|
padding: 0;
|
|
56
|
-
margin:
|
|
58
|
+
margin: 0;
|
|
57
59
|
}
|
|
58
60
|
.SummaryList-item {
|
|
59
|
-
|
|
61
|
+
margin-bottom: 2px;
|
|
60
62
|
}
|
|
61
63
|
.WorkList-highlights {
|
|
62
64
|
margin-top: 12px;
|
|
@@ -106,24 +108,38 @@
|
|
|
106
108
|
<h2>Work History</h2>
|
|
107
109
|
<ul class="WorkList">
|
|
108
110
|
{{#each work}}
|
|
109
|
-
|
|
110
|
-
<
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
111
|
+
{{#if this.isFeatured}}
|
|
112
|
+
<li class="WorkList-item">
|
|
113
|
+
<div class="WorkList-positionAt">
|
|
114
|
+
{{this.position}} at {{this.name}}
|
|
115
|
+
</div>
|
|
116
|
+
<div class="WorkList-dates">
|
|
117
|
+
{{this.startDate}} to {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
118
|
+
</div>
|
|
119
|
+
<div class="WorkList-summary">
|
|
120
|
+
{{{summaryToList this.summary}}}
|
|
121
|
+
</div>
|
|
122
|
+
{{#if this.highlights}}
|
|
123
|
+
<ul class="WorkList-highlights">
|
|
124
|
+
{{#each this.highlights}}
|
|
125
|
+
<li class="WorkList-highlight">{{this}}</li>
|
|
126
|
+
{{/each}}
|
|
127
|
+
</ul>
|
|
128
|
+
{{/if}}
|
|
129
|
+
</li>
|
|
130
|
+
{{/if}}
|
|
131
|
+
{{/each}}
|
|
132
|
+
</ul>
|
|
133
|
+
</section>
|
|
134
|
+
<section>
|
|
135
|
+
<h2>Work History, cont.</h2>
|
|
136
|
+
<ul class="WorkList">
|
|
137
|
+
{{#each work}}
|
|
138
|
+
{{#unless this.isFeatured}}
|
|
139
|
+
<li class="WorkList-item">
|
|
140
|
+
{{this.position}} at {{this.name}} from {{this.startDate}} to {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
141
|
+
</li>
|
|
142
|
+
{{/unless}}
|
|
127
143
|
{{/each}}
|
|
128
144
|
</ul>
|
|
129
145
|
</section>
|