This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
resume/layouts/partials/sections/experience.html

26 lines
796 B
HTML
Raw Normal View History

2023-12-06 22:56:56 +03:00
{{ with .Site.GetPage "/experience"}}
<h3>Опыт работы</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 }}{{ "н.в." }}
{{ end }}
</td>
</tr>
<tr class="subtitle">
<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 }}