Add education content
This commit is contained in:
parent
f88055964d
commit
48117f0dea
7
archetypes/education.md
Normal file
7
archetypes/education.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
|
||||
degree: Degree
|
||||
location: City
|
||||
start_date: '{{ .Date }}'
|
||||
end_date :
|
||||
---
|
7
content/education/Blinn-College.md
Normal file
7
content/education/Blinn-College.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Blinn College
|
||||
degree: Associate’s in Liberal Arts
|
||||
location: Bryan, TX
|
||||
start_date: 2014-08-01
|
||||
end_date : 2018-05-01
|
||||
---
|
7
content/education/Southwestern-University.md
Normal file
7
content/education/Southwestern-University.md
Normal file
@ -0,0 +1,7 @@
|
||||
---
|
||||
title: Southwestern University
|
||||
degree: Bachelor of Arts in Computer Science, Minor in Business
|
||||
location: Georgetown, TX
|
||||
start_date: 2018-08-01
|
||||
end_date : 2021-05-01
|
||||
---
|
@ -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>
|
||||
</table>
|
||||
{{ end }}
|
Loading…
Reference in New Issue
Block a user