From f237b273c7fbf56e7fccda7d0f7c0d0e3f8e1da0 Mon Sep 17 00:00:00 2001 From: Matthias Mair Date: Mon, 7 Feb 2022 01:12:30 +0100 Subject: [PATCH] refactor base components --- _includes/{ => base}/footer.html | 0 _includes/{ => base}/head.html | 0 _includes/{ => base}/header.html | 0 _layouts/default.html | 6 +++--- 4 files changed, 3 insertions(+), 3 deletions(-) rename _includes/{ => base}/footer.html (100%) rename _includes/{ => base}/head.html (100%) rename _includes/{ => base}/header.html (100%) diff --git a/_includes/footer.html b/_includes/base/footer.html similarity index 100% rename from _includes/footer.html rename to _includes/base/footer.html diff --git a/_includes/head.html b/_includes/base/head.html similarity index 100% rename from _includes/head.html rename to _includes/base/head.html diff --git a/_includes/header.html b/_includes/base/header.html similarity index 100% rename from _includes/header.html rename to _includes/base/header.html diff --git a/_layouts/default.html b/_layouts/default.html index 73425866..90f426f4 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -2,15 +2,15 @@ - {% include head.html %} + {% include base/head.html %} - {% include header.html %} + {% include base/header.html %} {{ content }} - {% include footer.html %} + {% include base/footer.html %}