diff --git a/_assets/default.html b/_assets/default.html
new file mode 100644
index 0000000..71b5460
--- /dev/null
+++ b/_assets/default.html
@@ -0,0 +1,22 @@
+
+
+
+{% include head.html %}
+
+
+
+{% if page.navigation %}
+{% include navigation.html %}
+{% endif %}
+
+
+
+ {{ content }}
+
+
+
+
+
+{% include footer.html %}
+
+
diff --git a/config/webpack.common.js b/config/webpack.common.js
index 9c48c08..68aa0db 100644
--- a/config/webpack.common.js
+++ b/config/webpack.common.js
@@ -34,7 +34,7 @@ module.exports = {
// Generates deprecation warning: https://github.com/jantimon/html-webpack-plugin/issues/1501
new HtmlWebpackPlugin({
// favicon: paths.src + '/images/favicon.png',
- template: './_assets/template.html', // template file
+ template: './_assets/default.html', // template file
filename: '../src/_layouts/default.html' // output file
}),
],
diff --git a/src/_scss/index.scss b/src/_scss/index.scss
index 9c4cd13..66e39c7 100644
--- a/src/_scss/index.scss
+++ b/src/_scss/index.scss
@@ -4,7 +4,3 @@
@import 'scaffolding';
@import 'layout';
@import 'text';
-
-@import 'pages/home';
-@import 'pages/console';
-@import 'pages/pong';