aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/sections/experience.html
blob: f813a5403fdf5e6bda90b5091905a5327e76c72f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{{ with .Site.GetPage "/experience"}}
<h3>Experience</h3>
{{ range .Pages }}
<table>
    <tbody>
        <tr>
            <td><strong>{{ .Title }}</strong></td>
            <td class="align-right">
                {{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} – 
                {{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}
            </td>
        </tr>
        <tr>
            <td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td>
            <td class="align-right"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td>
        </tr>
    </tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}