File tree Expand file tree Collapse file tree 2 files changed +62
-2
lines changed Expand file tree Collapse file tree 2 files changed +62
-2
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" rel =" noopener noreferrer" >{{ 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
+ {{ #if endDate }}
257
+ {{{ date startDate }}} - {{{ date endDate }}}
258
+ {{ else }}
259
+ {{{ date startDate }}}
260
+ {{ /if }}
261
+ {{ /if }}
262
+ </div >
263
+
264
+ </div >
265
+
266
+ {{ #if description }}
267
+ <div class =" summary" >
268
+ <p >{{{ markdown description }}} </p >
269
+ </div >
270
+ {{ /if }}
271
+ {{ #if highlights.length }}
272
+ <ul class =" highlights" >
273
+ {{ #each highlights }}
274
+ <li >{{{ markdown .}}} </li >
275
+ {{ /each }}
276
+ </ul >
277
+ {{ /if }}
278
+ </div >
279
+ {{ /each }}
280
+ </section >
281
+ {{ /if }}
282
+
232
283
{{ #if resume.education.length }}
233
284
<section id =" education" >
234
285
<h2 >Education</h2 >
Original file line number Diff line number Diff line change @@ -82,6 +82,13 @@ header h2 {
82
82
margin-right : 2em ;
83
83
}
84
84
85
+ .project_entity ,
86
+ .project_date ,
87
+ .project_website {
88
+ margin-bottom : 10px ;
89
+ width : 30% ;
90
+ }
91
+
85
92
.website ,
86
93
.email ,
87
94
.phone ,
@@ -117,13 +124,15 @@ header h2 {
117
124
}
118
125
119
126
# work ,
120
- # volunteer {
127
+ # volunteer ,
128
+ # projects {
121
129
padding-bottom : 5px ;
122
130
border-bottom : 1px var (--separator-color ) solid;
123
131
}
124
132
125
133
# work .item ,
126
- # volunteer .item {
134
+ # volunteer .item ,
135
+ # projects .item {
127
136
margin : 25px 0 ;
128
137
}
129
138
You can’t perform that action at this time.
0 commit comments