blob: f32f6baec891c10afbdc86455b5cf3774f8d3b57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ with .Site.GetPage "/education" }}
<h3>Education</h3>
<table>
<tbody>
{{ range sort (.Pages) "Params.end_date" "desc" }}
<tr>
<td><strong>{{ .Title }}</strong></td>
<td style="text-align: right;">{{ with .Params.location}}{{ . }}{{ end }}</td>
</tr>
<tr>
<td><em>{{ with .Params.degree}}{{ . }}{{ end }}</em>
</td>
<td style="text-align: right;"><em>
{{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} –
{{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}</em>
</td>
</tr>
{{ end }}
</tbody>
</table>
{{ end }}
|