diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-30 00:06:46 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-11-30 00:06:46 +0300 |
commit | 48117f0deaf318298947c9f5a6fe447572ba2353 (patch) | |
tree | 7a19d7a9154916f5f3985ef9d39b9f70170e48f6 /layouts | |
parent | f88055964d70b6d87503e19dcf17fd42c7df8529 (diff) |
Add education content
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/partials/body/education.html | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/layouts/partials/body/education.html b/layouts/partials/body/education.html index cacd0db..f32f6ba 100644 --- a/layouts/partials/body/education.html +++ b/layouts/partials/body/education.html @@ -1,23 +1,21 @@ +{{ with .Site.GetPage "/education" }} <h3>Education</h3> <table> <tbody> + {{ range sort (.Pages) "Params.end_date" "desc" }} <tr> - <td><strong>Southwestern University</strong></td> - <td style="text-align: right;">Georgetown, TX</td> + <td><strong>{{ .Title }}</strong></td> + <td style="text-align: right;">{{ with .Params.location}}{{ . }}{{ end }}</td> </tr> <tr> - <td><em>Bachelor of Arts in Computer Science, Minor in - Business</em> + <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> - <td style="text-align: right;"><em>Aug. 2018 – May 2021</em></td> - </tr> - <tr> - <td><strong>Blinn College</strong></td> - <td style="text-align: right;">Bryan, TX</td> - </tr> - <tr> - <td><em>Associate’s in Liberal Arts</em></td> - <td style="text-align: right;"><em>Aug. 2014 – May 2018</em></td> </tr> + {{ end }} </tbody> -</table>
\ No newline at end of file +</table> +{{ end }}
\ No newline at end of file |