diff --git a/_includes/footer.html b/_includes/common/footer.html similarity index 100% rename from _includes/footer.html rename to _includes/common/footer.html diff --git a/_includes/head.html b/_includes/common/head.html similarity index 100% rename from _includes/head.html rename to _includes/common/head.html diff --git a/_includes/header.html b/_includes/common/header.html similarity index 100% rename from _includes/header.html rename to _includes/common/header.html diff --git a/_layouts/default.html b/_layouts/default.html index 5a44d0d..9bd4122 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,7 +1,7 @@ -{% include head.html %} +{% include common/head.html %} @@ -15,9 +15,9 @@ {% else %} - {% include header.html %} + {% include common/header.html %} {{ content }} - {% include footer.html %} + {% include common/footer.html %} {% endif %}