@enure/jacklin 1.2.6 → 1.3.1
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 +31 -17
package/package.json
CHANGED
package/template.handlebars
CHANGED
|
@@ -108,24 +108,38 @@
|
|
|
108
108
|
<h2>Work History</h2>
|
|
109
109
|
<ul class="WorkList">
|
|
110
110
|
{{#each work}}
|
|
111
|
-
|
|
112
|
-
<
|
|
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="SummaryList">
|
|
137
|
+
{{#each work}}
|
|
138
|
+
{{#unless this.isFeatured}}
|
|
139
|
+
<li class="SummaryList-item">
|
|
113
140
|
{{this.position}} at {{this.name}}
|
|
114
|
-
</
|
|
115
|
-
|
|
116
|
-
{{this.startDate}} to {{#if this.endDate }}{{this.endDate}}{{/if}}{{#unless this.endDate }}current{{/unless}}
|
|
117
|
-
</div>
|
|
118
|
-
<div class="WorkList-summary">
|
|
119
|
-
{{{summaryToList this.summary}}}
|
|
120
|
-
</div>
|
|
121
|
-
{{#if this.highlights}}
|
|
122
|
-
<ul class="WorkList-highlights">
|
|
123
|
-
{{#each this.highlights}}
|
|
124
|
-
<li class="WorkList-highlight">{{this}}</li>
|
|
125
|
-
{{/each}}
|
|
126
|
-
</ul>
|
|
127
|
-
{{/if}}
|
|
128
|
-
</li>
|
|
141
|
+
</li>
|
|
142
|
+
{{/unless}}
|
|
129
143
|
{{/each}}
|
|
130
144
|
</ul>
|
|
131
145
|
</section>
|