aboutsummaryrefslogtreecommitdiff
path: root/src/templates.js
diff options
context:
space:
mode:
authorMark Powers <mark@marks.kitchen>2021-09-26 21:53:40 -0500
committerMark Powers <mark@marks.kitchen>2021-09-26 21:53:40 -0500
commitbbab3cf95b85b0314e9f47328bb2a38c540a5345 (patch)
tree2559d699b0106b913697dc0543e1fe9fee055189 /src/templates.js
parentdc98fdf6664645b6356b71a60edca9a07f21dff6 (diff)
Add about me page
Diffstat (limited to 'src/templates.js')
-rw-r--r--src/templates.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/templates.js b/src/templates.js
index 05f117a..5761be7 100644
--- a/src/templates.js
+++ b/src/templates.js
@@ -25,6 +25,7 @@ function setUpTemplates(){
loadTemplate(templates, "tags", path.join(__dirname, 'templates/tags.html'))
loadTemplate(templates, "misc", path.join(__dirname, 'templates/misc.html'))
loadTemplate(templates, "projects", path.join(__dirname, 'templates/projects.html'))
+ loadTemplate(templates, "about", path.join(__dirname, 'templates/about.html'))
return templates
}