From 8fc3f4b6cf55098a04cf8a7ae6159de4145c4007 Mon Sep 17 00:00:00 2001 From: Gabor Javorszky Date: Thu, 11 Feb 2021 21:13:20 +0000 Subject: [PATCH 1/2] update package.json info --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index da490d6..69eb239 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "11ty-netlify-jumpstart", - "version": "0.5.0", - "description": "", + "name": "jsnotoxford-site", + "version": "1.0.0", + "description": "Site source for https://not.jsoxford.com", "main": "index.js", "scripts": { "watch:sass": "sass --no-source-map --watch src/sass:public/css", @@ -20,13 +20,13 @@ }, "repository": { "type": "git", - "url": "git+https://github.com/5t3ph/11ty-netlify-jumpstart.git" + "url": "git+https://github.com/jsoxford/jsnotoxfordsite" }, "keywords": [], "author": "5t3ph", "license": "ISC", "bugs": { - "url": "https://github.com/5t3ph/11ty-netlify-jumpstart/issues" + "url": "https://github.com/jsoxford/jsnotoxfordsite/issues" }, "devDependencies": { "@11ty/eleventy": "^0.11.1", @@ -54,4 +54,4 @@ "browserslist": [ "last 2 versions" ] -} +} \ No newline at end of file From ccce5a6e6a65a98a2f4a69d008fc58c85e266958 Mon Sep 17 00:00:00 2001 From: Gabor Javorszky Date: Thu, 11 Feb 2021 21:16:45 +0000 Subject: [PATCH 2/2] move the footer partial out of page and into base --- src/_includes/layouts/base.njk | 1 + src/_includes/layouts/page.njk | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/_includes/layouts/base.njk b/src/_includes/layouts/base.njk index 5be4733..a93d43b 100644 --- a/src/_includes/layouts/base.njk +++ b/src/_includes/layouts/base.njk @@ -48,6 +48,7 @@
{{ content | safe }} + {% include "partials/footer.njk" %}
diff --git a/src/_includes/layouts/page.njk b/src/_includes/layouts/page.njk index b632d2f..28947f7 100644 --- a/src/_includes/layouts/page.njk +++ b/src/_includes/layouts/page.njk @@ -4,5 +4,4 @@ layout: base

{{ title | safe }}

{{ content | safe }} -
-{% include "partials/footer.njk" %} \ No newline at end of file + \ No newline at end of file