resume_exporter 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,407 @@
1
+ # <%= @data.dig(:basics, :name) %>
2
+ ## <%= @data.dig(:basics, :label) %>
3
+ <%= @data.dig(:basics, :summary) %>
4
+
5
+
6
+ # Contact
7
+
8
+ Email: <%= @data.dig(:basics, :contact, :email) %>
9
+ Phone: <%= @data.dig(:basics, :contact, :phone) %>
10
+ Website: <%= @data.dig(:basics, :contact, :website) %>
11
+ Address: <%= @data.dig(:basics, :contact, :location) %>
12
+ <% for social in @data.dig(:basics, :contact, :social) %>
13
+ <%= social[:network] %>: [<%= social[:user] %>](<%= social[:url] %>)
14
+ <% end %>
15
+
16
+
17
+ # Work Experience
18
+
19
+ <%= @data.dig(:employment, :summary) %>
20
+
21
+ <% for job in @data.dig(:employment, :history) %>
22
+ ## [<%= job[:employer] %>](<%= job[:url] %>)
23
+
24
+ <%= job[:position] %> | <%= job[:startDate] %> - <%= job[:endDate] %>
25
+ <%= job[:location] %>
26
+
27
+ <%= job[:summary] %>
28
+ **Highlights:**
29
+ <% for highlight in job[:highlights] %>
30
+ - <%= highlight %>
31
+ <% end %>
32
+
33
+ <%= job[:keywords].join(", ") %>
34
+
35
+ <% end %>
36
+
37
+ # Education
38
+
39
+ <%= @data.dig(:education, :summary) %>
40
+
41
+ <% for entry in @data.dig(:education, :history) %>
42
+ ## [<%= entry[:institution] %>](<%= entry[:url] %>)
43
+
44
+ <%= entry[:fieldOfStudy] %>, <%= entry[:degree] %>, <%= entry[:grade] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
45
+ <%= entry[:location] %>
46
+
47
+ <%= entry[:summary] %>
48
+
49
+ **Curriculum:**
50
+ <% for course in entry[:curriculum] %>
51
+ - <%= course %>
52
+ <% end %>
53
+
54
+ **Highlights:**
55
+ <% for highlight in entry[:highlights] %>
56
+ - <%= highlight %>
57
+ <% end %>
58
+
59
+ <%= entry[:keywords].join(", ") %>
60
+
61
+ <% end %>
62
+
63
+
64
+ # Projects
65
+
66
+ <%= @data.dig(:projects, :summary) %>
67
+
68
+ <% for project in @data.dig(:projects, :history) %>
69
+ ## [<%= project[:title] %>](<%= project[:url] %>)
70
+
71
+ <%= project[:category] %>, [<%= project[:repo] %>](<%= project[:repo] %>) | <%= project[:startDate] %> - <%= project[:endDate] %>
72
+
73
+ <%= project[:description] %>
74
+
75
+ **Roles:**
76
+ <% for role in project[:roles] %>
77
+ -<%= role %>
78
+
79
+ <% end %>
80
+
81
+
82
+ **Highlights:**
83
+ <% for highlight in project[:highlights] %>
84
+ - <%= highlight %>
85
+ <% end %>
86
+
87
+ <%= project[:keywords].join(", ") %>
88
+
89
+ <% end %>
90
+
91
+
92
+
93
+ # Open Source
94
+
95
+ <%= @data.dig(:openSource, :summary) %>
96
+
97
+
98
+ <% for project in @data.dig(:openSource, :history) %>
99
+
100
+ [<%= project[:title] %>](<%= project[:url] %>)
101
+
102
+ <%= project[:category] %>, [<%= project[:repo] %>](<%= project[:repo] %>) | <%= project[:startDate] %> - <%= project[:endDate] %>
103
+
104
+ <%= project[:description] %>
105
+
106
+ **Roles:**
107
+ <% for role in project[:roles] %>
108
+ -<%= role %>
109
+ <% end %>
110
+
111
+
112
+ **Highlights:**
113
+ <% for highlight in project[:highlights] %>
114
+ - <%= highlight %>
115
+ <% end %>
116
+
117
+ <%= project[:keywords].join(", ") %>
118
+
119
+ <% end %>
120
+
121
+
122
+ # Skills
123
+
124
+ <%= @data.dig(:skills, :summary) %>
125
+
126
+ <% for skill in @data.dig(:skills, :sets) %>
127
+ <%= skill[:name] %>
128
+ <%= skill[:description] %>
129
+ <%= skill[:keywords].join(", ") %>
130
+
131
+ <% end %>
132
+
133
+
134
+
135
+ # Qualifications
136
+
137
+ <%= @data.dig(:qualifications, :summary) %>
138
+
139
+ <% for qualification in @data.dig(:qualifications, :history) %>
140
+ ## [<%= qualification[:title] %>](<%= qualification[:url] %>)
141
+
142
+ <%= qualification[:category] %>, <%= qualification[:from] %> | <%= qualification[:startDate] %> - <%= qualification[:endDate] %>
143
+
144
+ <%= qualification[:summary] %>
145
+
146
+ **Highlights:**
147
+ <% for highlight in qualification[:highlights] %>
148
+ - <%= highlight %>
149
+ <% end %>
150
+
151
+ <%= qualification[:keywords].join(", ") %>
152
+
153
+ <% end %>
154
+
155
+
156
+ # Recognition
157
+
158
+ <%= @data.dig(:recognition, :summary) %>
159
+
160
+ <% for entry in @data.dig(:recognition, :history) %>
161
+ ## [<%= entry[:title] %>](<%= entry[:url] %>)
162
+
163
+ <%= entry[:category] %>, <%= entry[:from] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
164
+
165
+ <%= entry[:summary] %>
166
+
167
+ **Highlights:**
168
+ <% for highlight in entry[:highlights] %>
169
+ - <%= highlight %>
170
+ <% end %>
171
+
172
+ <%= entry[:keywords].join(", ") %>
173
+
174
+ <% end %>
175
+
176
+
177
+ # Writing
178
+
179
+ <%= @data.dig(:writing, :summary) %>
180
+
181
+ <% for entry in @data.dig(:writing, :history) %>
182
+ ## [<%= entry[:title] %>](<%= entry[:url] %>)
183
+
184
+ <%= entry[:category] %>, <%= entry[:publisher] %> | <%= entry[:date] %>
185
+
186
+ <%= entry[:summary] %>
187
+
188
+ **Highlights:**
189
+ <% for highlight in entry[:highlights] %>
190
+ - <%= highlight %>
191
+ <% end %>
192
+
193
+ <%= entry[:keywords].join(", ") %>
194
+
195
+ <% end %>
196
+
197
+
198
+ # Reading
199
+
200
+ <%= @data.dig(:reading, :summary) %>
201
+
202
+ <% for entry in @data.dig(:reading, :history) %>
203
+ ## [<%= entry[:title] %>](<%= entry[:url] %>)
204
+
205
+ <%= entry[:category] %>, <%= entry[:author] %> | <%= entry[:date] %>
206
+
207
+ <%= entry[:summary] %>
208
+
209
+ **Highlights:**
210
+ <% for highlight in entry[:highlights] %>
211
+ - <%= highlight %>
212
+ <% end %>
213
+
214
+ <%= entry[:keywords].join(", ") %>
215
+
216
+ <% end %>
217
+
218
+
219
+ # Speaking
220
+
221
+ <%= @data.dig(:speaking, :summary) %>
222
+
223
+ <% for entry in @data.dig(:speaking, :history) %>
224
+ ## [<%= entry[:title] %>](<%= entry[:url] %>)
225
+
226
+ <%= entry[:event] %>, <%= entry[:location] %> | <%= entry[:date] %>
227
+
228
+ <%= entry[:summary] %>
229
+
230
+ **Highlights:**
231
+ <% for highlight in entry[:highlights] %>
232
+ - <%= highlight %>
233
+ <% end %>
234
+
235
+ <%= entry[:keywords].join(", ") %>
236
+
237
+ <% end %>
238
+
239
+
240
+ # Patents
241
+
242
+ <%= @data.dig(:patents, :summary) %>
243
+
244
+ <% for patent in @data.dig(:patents, :history) %>
245
+ ## [<%= patent[:title] %>](<%= patent[:url] %>)
246
+
247
+ <%= patent[:number] %>, <%= patent[:status] %> | <%= patent[:date] %>
248
+
249
+ <%= patent[:description] %>
250
+
251
+ **Highlights:**
252
+ <% for highlight in patent[:highlights] %>
253
+ - <%= highlight %>
254
+ <% end %>
255
+
256
+ <%= patent[:keywords].join(", ") %>
257
+
258
+ <% end %>
259
+
260
+
261
+ # Languages
262
+
263
+ <%= @data.dig(:languages, :summary) %>
264
+
265
+ <% for language in @data.dig(:languages, :list) %>
266
+ - <%= language[:language] %>, <%= language[:level] %> (<%= language[:years] %> years)
267
+ <% end %>
268
+
269
+
270
+ # Interest
271
+
272
+ <%= @data.dig(:interests, :summary) %>
273
+
274
+ <% for interest in @data.dig(:interests, :list) %>
275
+ **<%= interest[:name] %>**
276
+ <%= interest[:description] %>
277
+
278
+ <% end %>
279
+
280
+
281
+ # Extracurricular
282
+
283
+ <%= @data.dig(:extracurriculars, :summary) %>
284
+
285
+ <% for entry in @data.dig(:extracurriculars, :history) %>
286
+
287
+ ## [<%= entry[:title] %>](<%= entry[:url] %>)
288
+
289
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
290
+
291
+ <%= entry[:summary] %>
292
+
293
+ **Highlights:**
294
+ <% for highlight in entry[:highlights] %>
295
+ - <%= highlight %>
296
+ <% end %>
297
+
298
+ <%= entry[:keywords].join(", ") %>
299
+
300
+ <% end %>
301
+
302
+
303
+ # Affiliation
304
+
305
+ <%= @data.dig(:affiliations, :summary) %>
306
+
307
+ <% for entry in @data.dig(:affiliations, :history) %>
308
+
309
+ ## [<%= entry[:organization] %>](<%= entry[:url] %>)
310
+
311
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
312
+
313
+ <%= entry[:summary] %>
314
+
315
+ **Roles:**
316
+ <% for role in entry[:roles] %>
317
+ -<%= role %>
318
+ <% end %>
319
+
320
+ **Highlights:**
321
+ <% for highlight in entry[:highlights] %>
322
+ - <%= highlight %>
323
+ <% end %>
324
+
325
+ <%= entry[:keywords].join(", ") %>
326
+
327
+ <% end %>
328
+
329
+
330
+ # Governance
331
+
332
+ <%= @data.dig(:governance, :summary) %>
333
+
334
+ <% for entry in @data.dig(:governance, :history) %>
335
+
336
+ ## [<%= entry[:organization] %>](<%= entry[:url] %>)
337
+
338
+ <%= entry[:summary] %>
339
+
340
+ <%= entry[:category] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
341
+
342
+ **Roles:**
343
+ <% for role in entry[:roles] %>
344
+ -<%= role %>
345
+ <% end %>
346
+
347
+ **Highlights:**
348
+ <% for highlight in entry[:highlights] %>
349
+ - <%= highlight %>
350
+ <% end %>
351
+
352
+ <%= entry[:keywords].join(", ") %>
353
+
354
+ <% end %>
355
+
356
+
357
+ # Service
358
+
359
+ <%= @data.dig(:service, :summary) %>
360
+
361
+ <% for entry in @data.dig(:service, :history) %>
362
+
363
+ ## [<%= entry[:organization] %>](<%= entry[:url] %>)
364
+
365
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
366
+
367
+ <%= entry[:summary] %>
368
+
369
+ **Roles:**
370
+ <% for role in entry[:roles] %>
371
+ -<%= role %>
372
+ <% end %>
373
+
374
+ **Highlights:**
375
+ <% for highlight in entry[:highlights] %>
376
+ - <%= highlight %>
377
+ <% end %>
378
+
379
+ <%= entry[:keywords].join(", ") %>
380
+
381
+ <% end %>
382
+
383
+
384
+ # References
385
+
386
+ <%= @data.dig(:references, :summary) %>
387
+
388
+ <% for reference in @data.dig(:references, :history) %>
389
+
390
+ **<%= reference[:name] %>**
391
+ <%= reference[:role] %>, <%= reference[:company] %>
392
+
393
+ <%= reference[:summary] %>
394
+
395
+ <% end %>
396
+
397
+
398
+ # Disposition
399
+
400
+ <%= @data.dig(:disposition, :summary) %>
401
+
402
+ Percentage of time willing to travel: <%= @data.dig(:disposition, :travel) %>
403
+ Work authorization: <%= @data.dig(:disposition, :authorization) %>
404
+ Types of work commitment desired: <%= @data.dig(:disposition, :commitment).join(", ") %>
405
+ Open to remote employment opportunities: <%= @data.dig(:disposition, :remote) %>
406
+ Willing to relocate: <%= @data.dig(:disposition, :relocation, :willing) %>
407
+ Preferred destinations for relocation: <%= @data.dig(:disposition, :relocation, :destinations).join(", ") %>
@@ -0,0 +1,383 @@
1
+ <%= @data.dig(:basics, :name) %>
2
+
3
+ <%= @data.dig(:basics, :label) %>
4
+
5
+ <%= @data.dig(:basics, :summary) %>
6
+
7
+
8
+ CONTACT
9
+ Email: <%= @data.dig(:basics, :contact, :email) %>
10
+ Phone: <%= @data.dig(:basics, :contact, :phone) %>
11
+ Website: <%= @data.dig(:basics, :contact, :website) %>
12
+ Address: <%= @data.dig(:basics, :contact, :location) %>
13
+ <% for social in @data.dig(:basics, :contact, :social) %>
14
+ <%= social[:network] %>: <%= social[:user] %> (<%= social[:url] %>)
15
+ <% end %>
16
+
17
+
18
+ WORK EXPERIENCE
19
+ <%= @data.dig(:employment, :summary) %>
20
+
21
+ <% for job in @data.dig(:employment, :history) %>
22
+ <%= job[:employer] %> (<%= job[:url] %>)
23
+
24
+ <%= job[:position] %> | <%= job[:startDate] %> - <%= job[:endDate] %>
25
+ <%= job[:location] %>
26
+
27
+ <%= job[:summary] %>
28
+
29
+ Highlights:
30
+ <% for highlight in job[:highlights] %>
31
+ - <%= highlight %>
32
+ <% end %>
33
+
34
+ <%= job[:keywords].join(", ") %>
35
+
36
+ <% end %>
37
+
38
+ EDUCATION
39
+ <%= @data.dig(:education, :summary) %>
40
+
41
+ <% for entry in @data.dig(:education, :history) %>
42
+ <%= entry[:institution] %> (<%= entry[:url] %>)
43
+
44
+ <%= entry[:fieldOfStudy] %>, <%= entry[:degree] %>, <%= entry[:grade] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
45
+ <%= entry[:location] %>
46
+
47
+ <%= entry[:summary] %>
48
+
49
+ Curriculum:
50
+ <% for course in entry[:curriculum] %>
51
+ - <%= course %>
52
+ <% end %>
53
+
54
+ Highlights:
55
+ <% for highlight in entry[:highlights] %>
56
+ - <%= highlight %>
57
+ <% end %>
58
+
59
+ <%= entry[:keywords].join(", ") %>
60
+
61
+ <% end %>
62
+
63
+
64
+ PROJECTS
65
+ <%= @data.dig(:projects, :summary) %>
66
+
67
+ <% for project in @data.dig(:projects, :history) %>
68
+ <%= project[:title] %> (<%= project[:url] %>)
69
+
70
+ <%= project[:category] %>, <%= project[:repo] %>, <%= project[:repo] %> | <%= project[:startDate] %> - <%= project[:endDate] %>
71
+
72
+ <%= project[:description] %>
73
+
74
+ Roles:
75
+ <% for role in project[:roles] %>
76
+ -<%= role %>
77
+ <% end %>
78
+
79
+
80
+ Highlights:
81
+ <% for highlight in project[:highlights] %>
82
+ - <%= highlight %>
83
+ <% end %>
84
+
85
+ <%= project[:keywords].join(", ") %>
86
+
87
+ <% end %>
88
+
89
+
90
+
91
+ OPEN SOURCE
92
+ <%= @data.dig(:openSource, :summary) %>
93
+
94
+ <% for project in @data.dig(:openSource, :history) %>
95
+ <%= project[:title] %> (<%= project[:url] %>)
96
+
97
+ <%= project[:category] %>, <%= project[:repo] %>, <%= project[:repo] %> | <%= project[:startDate] %> - <%= project[:endDate] %>
98
+
99
+ <%= project[:description] %>
100
+
101
+ Roles:
102
+ <% for role in project[:roles] %>
103
+ -<%= role %>
104
+ <% end %>
105
+
106
+
107
+ Highlights:
108
+ <% for highlight in project[:highlights] %>
109
+ - <%= highlight %>
110
+ <% end %>
111
+
112
+ <%= project[:keywords].join(", ") %>
113
+
114
+ <% end %>
115
+
116
+
117
+ SKILLS
118
+ <%= @data.dig(:skills, :summary) %>
119
+
120
+ <% for skill in @data.dig(:skills, :sets) %>
121
+ <%= skill[:name] %>
122
+ <%= skill[:description] %>
123
+ <%= skill[:keywords].join(", ") %>
124
+
125
+ <% end %>
126
+
127
+
128
+
129
+ QUALIFICATIONS
130
+ <%= @data.dig(:qualifications, :summary) %>
131
+
132
+ <% for qualification in @data.dig(:qualifications, :history) %>
133
+ <%= qualification[:title] %> (<%= qualification[:url] %>)
134
+
135
+ <%= qualification[:category] %>, <%= qualification[:from] %> | <%= qualification[:startDate] %> - <%= qualification[:endDate] %>
136
+
137
+ <%= qualification[:summary] %>
138
+
139
+ Highlights:
140
+ <% for highlight in qualification[:highlights] %>
141
+ - <%= highlight %>
142
+ <% end %>
143
+
144
+ <%= qualification[:keywords].join(", ") %>
145
+
146
+ <% end %>
147
+
148
+
149
+ RECOGNITION
150
+ <%= @data.dig(:recognition, :summary) %>
151
+
152
+ <% for entry in @data.dig(:recognition, :history) %>
153
+ <%= entry[:title] %> (<%= entry[:url] %>)
154
+
155
+ <%= entry[:category] %>, <%= entry[:from] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
156
+
157
+ <%= entry[:summary] %>
158
+
159
+ Highlights:
160
+ <% for highlight in entry[:highlights] %>
161
+ - <%= highlight %>
162
+ <% end %>
163
+
164
+ <%= entry[:keywords].join(", ") %>
165
+
166
+ <% end %>
167
+
168
+
169
+ WRITING
170
+ <%= @data.dig(:writing, :summary) %>
171
+
172
+ <% for entry in @data.dig(:writing, :history) %>
173
+ <%= entry[:title] %> (<%= entry[:url] %>)
174
+
175
+ <%= entry[:category] %>, <%= entry[:publisher] %> | <%= entry[:date] %>
176
+
177
+ <%= entry[:summary] %>
178
+
179
+ Highlights:
180
+ <% for highlight in entry[:highlights] %>
181
+ - <%= highlight %>
182
+ <% end %>
183
+
184
+ <%= entry[:keywords].join(", ") %>
185
+
186
+ <% end %>
187
+
188
+
189
+ READING
190
+ <%= @data.dig(:reading, :summary) %>
191
+
192
+ <% for entry in @data.dig(:reading, :history) %>
193
+ <%= entry[:title] %> (<%= entry[:url] %>)
194
+
195
+ <%= entry[:category] %>, <%= entry[:author] %> | <%= entry[:date] %>
196
+
197
+ <%= entry[:summary] %>
198
+
199
+ Highlights:
200
+ <% for highlight in entry[:highlights] %>
201
+ - <%= highlight %>
202
+ <% end %>
203
+
204
+ <%= entry[:keywords].join(", ") %>
205
+
206
+ <% end %>
207
+
208
+
209
+ SPEAKING
210
+ <%= @data.dig(:speaking, :summary) %>
211
+
212
+ <% for entry in @data.dig(:speaking, :history) %>
213
+ <%= entry[:title] %> (<%= entry[:url] %>)
214
+
215
+ <%= entry[:event] %>, <%= entry[:location] %> | <%= entry[:date] %>
216
+
217
+ <%= entry[:summary] %>
218
+
219
+ Highlights:
220
+ <% for highlight in entry[:highlights] %>
221
+ - <%= highlight %>
222
+ <% end %>
223
+
224
+ <%= entry[:keywords].join(", ") %>
225
+
226
+ <% end %>
227
+
228
+
229
+ PATENTS
230
+ <%= @data.dig(:patents, :summary) %>
231
+
232
+ <% for patent in @data.dig(:patents, :history) %>
233
+ <%= patent[:title] %> (<%= patent[:url] %>)
234
+
235
+ <%= patent[:number] %>, <%= patent[:status] %> | <%= patent[:date] %>
236
+
237
+ <%= patent[:description] %>
238
+
239
+ Highlights:
240
+ <% for highlight in patent[:highlights] %>
241
+ - <%= highlight %>
242
+ <% end %>
243
+
244
+ <%= patent[:keywords].join(", ") %>
245
+
246
+ <% end %>
247
+
248
+
249
+ LANGUAGES
250
+ <%= @data.dig(:languages, :summary) %>
251
+
252
+ <% for language in @data.dig(:languages, :list) %>
253
+ - <%= language[:language] %>, <%= language[:level] %> (<%= language[:years] %> years)
254
+ <% end %>
255
+
256
+
257
+ INTEREST
258
+ <%= @data.dig(:interests, :summary) %>
259
+
260
+ <% for interest in @data.dig(:interests, :list) %>
261
+ <%= interest[:name] %>
262
+ <%= interest[:description] %>
263
+
264
+ <% end %>
265
+
266
+
267
+ EXTRACURRICULAR
268
+ <%= @data.dig(:extracurriculars, :summary) %>
269
+
270
+ <% for entry in @data.dig(:extracurriculars, :history) %>
271
+
272
+ <%= entry[:title] %> (<%= entry[:url] %>)
273
+
274
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
275
+
276
+ <%= entry[:summary] %>
277
+
278
+ Highlights:
279
+ <% for highlight in entry[:highlights] %>
280
+ - <%= highlight %>
281
+ <% end %>
282
+
283
+ <%= entry[:keywords].join(", ") %>
284
+ <% end %>
285
+
286
+
287
+ AFFILIATION
288
+ <%= @data.dig(:affiliations, :summary) %>
289
+
290
+ <% for entry in @data.dig(:affiliations, :history) %>
291
+
292
+ <%= entry[:organization] %> (<%= entry[:url] %>)
293
+
294
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
295
+
296
+ <%= entry[:summary] %>
297
+
298
+ Roles:
299
+ <% for role in entry[:roles] %>
300
+ -<%= role %>
301
+ <% end %>
302
+
303
+ Highlights:
304
+ <% for highlight in entry[:highlights] %>
305
+ - <%= highlight %>
306
+ <% end %>
307
+
308
+ <%= entry[:keywords].join(", ") %>
309
+ <% end %>
310
+
311
+
312
+ GOVERNANCE
313
+ <%= @data.dig(:governance, :summary) %>
314
+
315
+ <% for entry in @data.dig(:governance, :history) %>
316
+
317
+ <%= entry[:organization] %> (<%= entry[:url] %>)
318
+
319
+ <%= entry[:summary] %>
320
+
321
+ <%= entry[:category] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
322
+
323
+ Roles:
324
+ <% for role in entry[:roles] %>
325
+ -<%= role %>
326
+ <% end %>
327
+
328
+ Highlights:
329
+ <% for highlight in entry[:highlights] %>
330
+ - <%= highlight %>
331
+ <% end %>
332
+
333
+ <%= entry[:keywords].join(", ") %>
334
+ <% end %>
335
+
336
+
337
+ SERVICE
338
+ <%= @data.dig(:service, :summary) %>
339
+
340
+ <% for entry in @data.dig(:service, :history) %>
341
+
342
+ <%= entry[:organization] %> (<%= entry[:url] %>)
343
+
344
+ <%= entry[:category] %>, <%= entry[:location] %> | <%= entry[:startDate] %> - <%= entry[:endDate] %>
345
+
346
+ <%= entry[:summary] %>
347
+
348
+ Roles:
349
+ <% for role in entry[:roles] %>
350
+ -<%= role %>
351
+ <% end %>
352
+
353
+ Highlights:
354
+ <% for highlight in entry[:highlights] %>
355
+ - <%= highlight %>
356
+ <% end %>
357
+
358
+ <%= entry[:keywords].join(", ") %>
359
+ <% end %>
360
+
361
+
362
+ REFERENCES
363
+ <%= @data.dig(:references, :summary) %>
364
+
365
+ <% for reference in @data.dig(:references, :history) %>
366
+
367
+ <%= reference[:name] %>
368
+ <%= reference[:role] %>, <%= reference[:company] %>
369
+
370
+ <%= reference[:summary] %>
371
+
372
+ <% end %>
373
+
374
+
375
+ DISPOSITION
376
+ <%= @data.dig(:disposition, :summary) %>
377
+
378
+ Percentage of time willing to travel: <%= @data.dig(:disposition, :travel) %>
379
+ Work authorization: <%= @data.dig(:disposition, :authorization) %>
380
+ Types of work commitment desired: <%= @data.dig(:disposition, :commitment).join(", ") %>
381
+ Open to remote employment opportunities: <%= @data.dig(:disposition, :remote) %>
382
+ Willing to relocate: <%= @data.dig(:disposition, :relocation, :willing) %>
383
+ Preferred destinations for relocation: <%= @data.dig(:disposition, :relocation, :destinations).join(", ") %>