blob: 98972265249db209c9962da8e2635ae618bab4ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{ with .Site.GetPage "/projects" }}
<h3>Projects</h3>
<hr>
{{ range .Pages }}
<table>
<tbody>
<tr>
<td><strong>{{ .Title }} </strong><span>|</span>
<em>{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em>
</td>
<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>
</tr>
</tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}
|