2023-11-29 23:58:56 +03:00
|
|
|
|
{{ with .Site.GetPage "/experience"}}
|
2023-11-23 23:23:26 +03:00
|
|
|
|
<h3>Experience</h3>
|
2023-12-02 23:45:18 +03:00
|
|
|
|
{{ range .Pages }}
|
2023-11-23 23:23:26 +03:00
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr>
|
2023-11-29 23:58:56 +03:00
|
|
|
|
<td><strong>{{ .Title }}</strong></td>
|
2023-12-02 23:21:28 +03:00
|
|
|
|
<td class="align-right">
|
2023-11-29 23:58:56 +03:00
|
|
|
|
{{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} –
|
|
|
|
|
{{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}
|
2023-11-23 23:23:26 +03:00
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2023-11-29 23:58:56 +03:00
|
|
|
|
<td><em>{{with .Params.workplace}}{{ . }}{{ end }}</em></td>
|
2023-12-02 23:21:28 +03:00
|
|
|
|
<td class="align-right"><em>{{ with .Params.location}}{{ . }}{{ end }}</em></td>
|
2023-11-23 23:23:26 +03:00
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2023-11-29 23:58:56 +03:00
|
|
|
|
{{ .Content }}
|
|
|
|
|
{{ end }}
|
|
|
|
|
{{ end }}
|