jsonresume-theme-engineering-leader 1.0.30 → 1.0.31
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/resume.hbs +49 -0
package/package.json
CHANGED
package/resume.hbs
CHANGED
|
@@ -111,6 +111,55 @@
|
|
|
111
111
|
</section>
|
|
112
112
|
{{/if}}
|
|
113
113
|
|
|
114
|
+
{{#if resume.advisory.length}}
|
|
115
|
+
<section id="advisory">
|
|
116
|
+
<h2>Advising & Mentoring</h2>
|
|
117
|
+
{{#each resume.advisory}}
|
|
118
|
+
|
|
119
|
+
<div class="item">
|
|
120
|
+
<div class="item-header">
|
|
121
|
+
<h3 class="item-header-title">
|
|
122
|
+
{{organization}},
|
|
123
|
+
|
|
124
|
+
{{#if location}}
|
|
125
|
+
<span class="location">
|
|
126
|
+
{{location.city}}, {{location.region}}
|
|
127
|
+
</span>
|
|
128
|
+
{{~/if}}
|
|
129
|
+
</h3>
|
|
130
|
+
<div class="item-header-subtitle">
|
|
131
|
+
{{position}}
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
<div class="item-details">
|
|
135
|
+
<div class="date">
|
|
136
|
+
{{startDate}} - {{endDate}}
|
|
137
|
+
</div>
|
|
138
|
+
</div>
|
|
139
|
+
<div class="clearfix"></div>
|
|
140
|
+
|
|
141
|
+
<p>{{summary}}</p>
|
|
142
|
+
|
|
143
|
+
{{#if highlights.length}}
|
|
144
|
+
<ul class="highlights">
|
|
145
|
+
{{#each highlights}}
|
|
146
|
+
{{#if (isArray this)}}
|
|
147
|
+
<ul>
|
|
148
|
+
{{#each this}}
|
|
149
|
+
<li>{{this}}</li>
|
|
150
|
+
{{/each}}
|
|
151
|
+
</ul>
|
|
152
|
+
{{else}}
|
|
153
|
+
<li>{{this}}</li>
|
|
154
|
+
{{/if}}
|
|
155
|
+
{{/each}}
|
|
156
|
+
</ul>
|
|
157
|
+
{{/if}}
|
|
158
|
+
</div>
|
|
159
|
+
{{/each}}
|
|
160
|
+
</section>
|
|
161
|
+
{{/if}}
|
|
162
|
+
|
|
114
163
|
{{#if resume.education.length}}
|
|
115
164
|
<section id="education">
|
|
116
165
|
<h2>Education</h2>
|