-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.njk
44 lines (44 loc) · 1.3 KB
/
work.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
---
layout: main.njk
title: Mohit Karekar
coverImage: img/cover.jpg
---
<span>
<a href="/">home</a>
<span>/</span>
<span>work</span>
</span>
<div>
<h1 style="text-align: left">Work</h1>
<p class="tagline">Orgs I've worked with, and some personal work.</p>
<hr/>
<div class="work">
<h2 class="type">{{ work.experience.title }}</h2>
<table>
<tbody>
{%- for item in work.experience.items | reverse -%}
<tr>
<td><a href="{{item.link}}">{{ item.title }}</a></td>
<td>
{%- for role in item.roles -%}
<b>{{ role.position }}</b> • <span>{{ role.dateRange }}</span>
<p>{{ role.description }}</p>
{%- endfor -%}
</td>
</tr>
{%- endfor -%}
</tbody>
</table>
<h2 class="type">{{ work.projects.title }}</h2>
<table>
<tbody>
{%- for item in work.projects.items -%}
<tr>
<td><a href="{{item.link}}">{{ item.title }}</a></td>
<td>{{ item.description }}</td>
</tr>
{%- endfor -%}
</tbody>
</table>
</div>
</div>