blob: 1bc67b6bc74be2fe38e1287bb676ba94aba208d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{{ with .Site.GetPage "/projects" }}
<h3>Projects</h3>
{{ range .Pages }}
<table>
<tbody>
<tr>
<td><strong>{{ .Title }} </strong><span>|</span>
<em class="subtitle">{{ range $i, $e := .Params.tags -}}{{- if $i -}}, {{ end -}}{{ . }}{{- end -}}</em>
</td>
<td class="align-right">
{{ with .Params.start_date }}
{{ if le ( len (time.Format "January" .)) 4}}
{{ time.Format "January 2006" . }}
{{ else }}
{{ time.Format "Jan. 2006" . }}
{{ end }}
{{ end }} –
{{ with .Params.end_date }}
{{ if le ( len (time.Format "January" .)) 4}}
{{ time.Format "January 2006" . }}
{{ else }}
{{ time.Format "Jan. 2006" . }}
{{ end }}
{{ else }}{{ "Present" }}
{{ end }}
</td>
</tr>
</tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}
|