From 4c7ef3007e064c98139cc91a328990f55645bfb9 Mon Sep 17 00:00:00 2001 From: Daniel Sissom Date: Wed, 4 Sep 2024 16:29:50 -0500 Subject: [PATCH] Changed html_head template to meta. --- assets/templates/base.pug | 2 +- assets/templates/{html_head.pug => meta.pug} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename assets/templates/{html_head.pug => meta.pug} (100%) diff --git a/assets/templates/base.pug b/assets/templates/base.pug index 1442e4b..71400d6 100644 --- a/assets/templates/base.pug +++ b/assets/templates/base.pug @@ -7,7 +7,7 @@ html(class="no-js", lang="en") block set_current_page - var page = 'default' - include ./html_head.pug + include ./meta.pug body(class=page) include ./header.pug diff --git a/assets/templates/html_head.pug b/assets/templates/meta.pug similarity index 100% rename from assets/templates/html_head.pug rename to assets/templates/meta.pug