From 417181734ba10c6ea43b4a633a21d84e09582566 Mon Sep 17 00:00:00 2001 From: Conrad Selig <31974507+ConradSelig@users.noreply.github.com> Date: Tue, 29 Jan 2019 15:36:13 -0700 Subject: [PATCH] #893 Excluding old site files After the previous commit it became apparent that the site was still trying to use the old index.html and about.md. This edit to the _config.yml file should exclude those original files from the site build. --- _config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_config.yml b/_config.yml index 52bcf8f5a..67b0670c9 100644 --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,6 @@ source : ./_site_assets destination : ./_site +exclude : ["index.html", "about.md"] + encoding : "utf-8" \ No newline at end of file