diff --git a/archetypes/experience.md b/archetypes/experience.md
new file mode 100644
index 0000000..0808403
--- /dev/null
+++ b/archetypes/experience.md
@@ -0,0 +1,7 @@
+---
+title: '{{ replace .File.ContentBaseName `-` ` ` | title }}'
+workplace: Workplace
+location: City
+start_date: '{{ .Date }}'
+end_date :
+---
\ No newline at end of file
diff --git a/content/experience/Artificial-Intelligence-Research-Assistant.md b/content/experience/Artificial-Intelligence-Research-Assistant.md
new file mode 100644
index 0000000..8004361
--- /dev/null
+++ b/content/experience/Artificial-Intelligence-Research-Assistant.md
@@ -0,0 +1,13 @@
+---
+title: Artificial Intelligence Research Assistant
+workplace: Southwestern University
+location: Georgetown, TX
+start_date: 2019-05-01
+end_date : 2019-07-01
+---
+- Explored methods to generate video game dungeons based off of *The Legend of Zelda*
+- Developed a game in Java to test the generated dungeons
+- Contributed 50K+ lines of code to an established codebase via Git
+- Conducted a human subject study to determine which video game dungeon generation technique is enjoyable
+- Wrote an 8-page paper and gave multiple presentations on-campus
+- Presented virtually to the World Conference on Computational Intelligence
\ No newline at end of file
diff --git a/content/experience/Information-Technology-Support-Specialist.md b/content/experience/Information-Technology-Support-Specialist.md
new file mode 100644
index 0000000..27c45cb
--- /dev/null
+++ b/content/experience/Information-Technology-Support-Specialist.md
@@ -0,0 +1,10 @@
+---
+title: Information Technology Support Specialist
+workplace: Southwestern University
+location: Georgetown, TX
+start_date: 2018-09-01
+end_date :
+---
+- Communicate with managers to set up campus computers used on campus
+- Assess and troubleshoot computer problems brought by students, faculty and staff
+- Maintain upkeep of computers, classroom equipment, and 200 printers across campus
\ No newline at end of file
diff --git a/content/experience/Undergraduate-Research-Assistant.md b/content/experience/Undergraduate-Research-Assistant.md
new file mode 100644
index 0000000..c80f3a6
--- /dev/null
+++ b/content/experience/Undergraduate-Research-Assistant.md
@@ -0,0 +1,10 @@
+---
+title: Undergraduate Research Assistant
+workplace: Texas A&M University
+location: College Station, TX
+start_date: 2020-06-01
+end_date :
+---
+- Developed a REST API using FastAPI and PostgreSQL to store data from learning management systems
+- Developed a full-stack web application using Flask, React, PostgreSQL and Docker to analyze GitHub data
+- Explored ways to visualize GitHub collaboration in a classroom setting
\ No newline at end of file
diff --git a/layouts/partials/body/experience.html b/layouts/partials/body/experience.html
index 95a49a1..5e25f37 100644
--- a/layouts/partials/body/experience.html
+++ b/layouts/partials/body/experience.html
@@ -1,80 +1,21 @@
+{{ with .Site.GetPage "/experience"}}
Experience
+{{ range sort (.Pages) "Params.start_date" "desc" }}
- Undergraduate Research Assistant |
- June 2020 – Present
+ | {{ .Title }} |
+
+ {{ with .Params.start_date }}{{ time.Format "Jan 2006" . }}{{ end }} –
+ {{ with .Params.end_date }}{{ time.Format "Jan 2006" . }}{{ else }}{{ "Present" }}{{ end }}
|
- Texas A&M University |
- College Station, TX |
+ {{with .Params.workplace}}{{ . }}{{ end }} |
+ {{ with .Params.location}}{{ . }}{{ end }} |
-
- - Developed a REST API using FastAPI and PostgreSQL to store data from learning management systems
-
- - Developed a full-stack web application using Flask, React, PostgreSQL and Docker to analyze GitHub
- data
-
- - Explored ways to visualize GitHub collaboration in a classroom setting
-
-
-
-
-
- Information Technology Support
- Specialist |
- Sep. 2018 – Present |
-
-
- Southwestern University |
- Georgetown, TX |
-
-
-
-
- - Communicate with managers to set up campus computers
- used on campus
-
- - Assess and troubleshoot computer problems brought by
- students, faculty and staff
-
- - Maintain upkeep of computers, classroom equipment,
- and 200 printers across campus
-
-
-
-
-
- Artificial Intelligence Research
- Assistant |
- May 2019 – July 2019 |
-
-
- Southwestern University |
- Georgetown, TX |
-
-
-
-
- - Explored methods to generate video game dungeons
- based off of The Legend of Zelda
-
- - Developed a game in Java to test the generated
- dungeons
-
- - Contributed 50K+ lines of code to an established
- codebase via Git
-
- - Conducted a human subject study to determine which
- video game dungeon generation technique is enjoyable
-
- - Wrote an 8-page paper and gave multiple
- presentations on-campus
-
- - Presented virtually to the World Conference on
- Computational Intelligence
-
-
\ No newline at end of file
+{{ .Content }}
+{{ end }}
+{{ end }}
\ No newline at end of file