1
0
hugos-resume/layouts/partials/body/projects.html

20 lines
625 B
HTML
Raw Normal View History

2023-11-28 23:10:01 +03:00
{{ with .Site.GetPage "/projects" }}
2023-11-23 22:27:56 +03:00
<h3>Projects</h3>
<hr>
2023-11-28 23:10:01 +03:00
{{ range .Pages }}
2023-11-23 22:27:56 +03:00
<table>
<tbody>
<tr>
2023-11-28 23:10:01 +03:00
<td><strong>{{ .Title }} </strong><span>|</span>
<em>{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em>
2023-11-23 22:27:56 +03:00
</td>
2023-11-28 23:52:43 +03:00
<td style="text-align: right;">
{{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }}
{{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}
</td>
2023-11-23 22:27:56 +03:00
</tr>
</tbody>
</table>
2023-11-28 23:10:01 +03:00
{{ .Content }}
{{ end }}
{{ end }}