diff options
author | Mark Powers <markppowers0@gmail.com> | 2020-11-22 19:37:10 -0600 |
---|---|---|
committer | Mark Powers <markppowers0@gmail.com> | 2020-11-22 19:37:10 -0600 |
commit | c18dd9ef6c9b3407862db7f01372bc65bb1c3721 (patch) | |
tree | e4dfd6e1dfb744b0266b97679059712875ef741c /src/templates.js | |
parent | 63668ca89f055b2233a8aa6caf4213853918d68d (diff) |
Add svg favicon
Diffstat (limited to 'src/templates.js')
-rw-r--r-- | src/templates.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/templates.js b/src/templates.js index 293f0e4..05f117a 100644 --- a/src/templates.js +++ b/src/templates.js @@ -15,6 +15,7 @@ function setUpTemplates(){ loadPartial("navigation", path.join(__dirname, "templates/navigation.html")) loadPartial("footer", path.join(__dirname, "templates/footer.html")) loadPartial("feed", path.join(__dirname, "templates/feed.html")) + loadPartial("header", path.join(__dirname, "templates/header.html")) let templates = {}; loadTemplate(templates, "index", path.join(__dirname, 'templates/index.html')) @@ -30,4 +31,4 @@ function setUpTemplates(){ module.exports = { setUpTemplates -}
\ No newline at end of file +} |