File tree Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Expand file tree Collapse file tree 2 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 229
229
</section >
230
230
{{ /if }}
231
231
232
+ {{ #if resume.projects.length }}
233
+ <section id =" projects" >
234
+ <h2 >Projects</h2 >
235
+ {{ #each resume.projects }}
236
+ <div class =" item" >
237
+ {{ #if name }}
238
+ <h3 class =" project_name" >
239
+ {{ #if url }}
240
+ <a href =" {{ url }} " target =" _blank" >{{ name }} </a >
241
+ {{ else }}
242
+ {{ name }}
243
+ {{ /if }}
244
+ </h3 >
245
+ {{ /if }}
246
+
247
+ <div class =" split" >
248
+ {{ #if entity }}
249
+ <div class =" project_entity" >
250
+ {{ entity }}
251
+ </div >
252
+ {{ /if }}
253
+
254
+ <div class =" project_date" >
255
+ {{ #if startDate }}
256
+ {{{ date startDate }}} - {{{ date endDate }}}
257
+ {{ /if }}
258
+ </div >
259
+
260
+ {{ #if url }}
261
+ <div class =" project_website" >
262
+ {{{ link url }}}
263
+ </div >
264
+ {{ /if }}
265
+ </div >
266
+
267
+ {{ #if description }}
268
+ <div class =" summary" >
269
+ <p >{{{ markdown description }}} </p >
270
+ </div >
271
+ {{ /if }}
272
+ {{ #if highlights.length }}
273
+ <ul class =" highlights" >
274
+ {{ #each highlights }}
275
+ <li >{{{ markdown .}}} </li >
276
+ {{ /each }}
277
+ </ul >
278
+ {{ /if }}
279
+ </div >
280
+ {{ /each }}
281
+ </section >
282
+ {{ /if }}
283
+
232
284
{{ #if resume.education.length }}
233
285
<section id =" education" >
234
286
<h2 >Education</h2 >
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ header h2 {
82
82
margin-right : 2em ;
83
83
}
84
84
85
+ .project_date {
86
+ margin-right : 2em ;
87
+ }
88
+
85
89
.website ,
86
90
.email ,
87
91
.phone ,
You can’t perform that action at this time.
0 commit comments