diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-02 23:45:18 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2023-12-02 23:45:18 +0300 |
commit | 9f285a1e7bffb04eb2903f21d2a7983faf7f4111 (patch) | |
tree | 2acb04d2fbd1b31eb92b480b40ab799bb005a1d3 | |
parent | 3719fbed365a839d54e9498d82ce63bcfe889b48 (diff) |
Add weights to experience
5 files changed, 5 insertions, 1 deletions
diff --git a/archetypes/experience.md b/archetypes/experience.md index 0808403..bff10f9 100644 --- a/archetypes/experience.md +++ b/archetypes/experience.md @@ -1,5 +1,6 @@ --- title: '{{ replace .File.ContentBaseName `-` ` ` | title }}' +weight: 1 workplace: Workplace location: City start_date: '{{ .Date }}' diff --git a/content/experience/Artificial-Intelligence-Research-Assistant.md b/content/experience/Artificial-Intelligence-Research-Assistant.md index 8004361..e8f553c 100644 --- a/content/experience/Artificial-Intelligence-Research-Assistant.md +++ b/content/experience/Artificial-Intelligence-Research-Assistant.md @@ -1,5 +1,6 @@ --- title: Artificial Intelligence Research Assistant +weight: 3 workplace: Southwestern University location: Georgetown, TX start_date: 2019-05-01 diff --git a/content/experience/Information-Technology-Support-Specialist.md b/content/experience/Information-Technology-Support-Specialist.md index 27c45cb..9f67706 100644 --- a/content/experience/Information-Technology-Support-Specialist.md +++ b/content/experience/Information-Technology-Support-Specialist.md @@ -1,5 +1,6 @@ --- title: Information Technology Support Specialist +weight: 2 workplace: Southwestern University location: Georgetown, TX start_date: 2018-09-01 diff --git a/content/experience/Undergraduate-Research-Assistant.md b/content/experience/Undergraduate-Research-Assistant.md index c80f3a6..cb6ab98 100644 --- a/content/experience/Undergraduate-Research-Assistant.md +++ b/content/experience/Undergraduate-Research-Assistant.md @@ -1,5 +1,6 @@ --- title: Undergraduate Research Assistant +weight: 1 workplace: Texas A&M University location: College Station, TX start_date: 2020-06-01 diff --git a/layouts/partials/sections/experience.html b/layouts/partials/sections/experience.html index c975051..f813a54 100644 --- a/layouts/partials/sections/experience.html +++ b/layouts/partials/sections/experience.html @@ -1,6 +1,6 @@ {{ with .Site.GetPage "/experience"}} <h3>Experience</h3> -{{ range sort (.Pages) "Params.start_date" "desc" }} +{{ range .Pages }} <table> <tbody> <tr> |