diff --git a/src/_includes/layouts/portfolio.html b/src/_includes/layouts/portfolio.html
index 1e75c47..23fa51c 100644
--- a/src/_includes/layouts/portfolio.html
+++ b/src/_includes/layouts/portfolio.html
@@ -2,101 +2,9 @@
{% extends "layouts/base.html" %}
{% block content %}
-
-
-
-
- The latest version of my resume is hosted on
- GitHub.
-
-
-
-
-
-
- {% for profExp in collections.professionalExperience %}
-
-
-
-
-
-
{{ profExp.data.companyName }}
- {{ profExp.data.jobTitle }}
- {{ profExp.data.workLocation }}
- {{ profExp.data.startDate }} - {{ profExp.data.endDate }}
- {{ profExp.content | safe }}
-
-
-
- {% if collections.professionalExperienceProjects.length > 0 %}
-
-
- {% for project in (collections.professionalExperienceProjects | findProjectAssociatedWithExperience(profExp.data.id)) %}
- {% set projectSlug = (profExp.data.id + '-' + project.data.name | slugify) %}
-
-
-
-
- {{ project.content | safe }}
-
-
-
- {% endfor %}
-
-
- {% endif %}
-
- {% endfor %}
-
-
-
-
-
-
+{% include "partials/resume.html" %}
+{% include "partials/professionalExperience.html" %}
+{% include "partials/education.html" %}
+{% include "partials/research.html" %}
-{% endblock %}
+{% endblock %}
\ No newline at end of file
diff --git a/src/_includes/partials/education.html b/src/_includes/partials/education.html
new file mode 100644
index 0000000..5cc06c7
--- /dev/null
+++ b/src/_includes/partials/education.html
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/_includes/partials/professionalExperience.html b/src/_includes/partials/professionalExperience.html
new file mode 100644
index 0000000..303b46a
--- /dev/null
+++ b/src/_includes/partials/professionalExperience.html
@@ -0,0 +1,61 @@
+
+
+
+{% for profExp in collections.professionalExperience %}
+
+
+
+
+
+
{{ profExp.data.companyName }}
+ {{ profExp.data.jobTitle }}
+ {{ profExp.data.workLocation }}
+ {{ profExp.data.startDate }} - {{ profExp.data.endDate }}
+ {{ profExp.content | safe }}
+
+
+
+ {% if collections.professionalExperienceProjects.length > 0 %}
+
+
+ {% for project in (collections.professionalExperienceProjects | findProjectAssociatedWithExperience(profExp.data.id)) %}
+ {% set projectSlug = (profExp.data.id + '-' + project.data.name | slugify) %}
+
+
+
+
+ {{ project.content | safe }}
+
+
+
+ {% endfor %}
+
+
+ {% endif %}
+
+{% endfor %}
\ No newline at end of file
diff --git a/src/_includes/partials/research.html b/src/_includes/partials/research.html
new file mode 100644
index 0000000..3e9991e
--- /dev/null
+++ b/src/_includes/partials/research.html
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/src/_includes/partials/resume.html b/src/_includes/partials/resume.html
new file mode 100644
index 0000000..900a6bd
--- /dev/null
+++ b/src/_includes/partials/resume.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ The latest version of my resume is hosted on
+ GitHub.
+
+
+
\ No newline at end of file