aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/body/projects.html
blob: 98d9b6cf0fb8091b517d61bb84692b362a47b827 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ 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;">June 2020 – Present</td>
        </tr>
    </tbody>
</table>
{{ .Content }}
{{ end }}
{{ end }}