diff --git a/.stow-local-ignore b/.stow-local-ignore index 84f378c..858b01f 100644 --- a/.stow-local-ignore +++ b/.stow-local-ignore @@ -1,9 +1,3 @@ ^/\.git.* -^/CNAME -^/Gemfile.* ^/README\.md -^/css -^/_.* -^/\.sass-cache -^/vendor -^/.*\.html +^/site.* diff --git a/site/.dots/README.md b/site/.dots/README.md new file mode 120000 index 0000000..fe84005 --- /dev/null +++ b/site/.dots/README.md @@ -0,0 +1 @@ +../../README.md \ No newline at end of file diff --git a/site/.dots/local b/site/.dots/local new file mode 120000 index 0000000..ba89165 --- /dev/null +++ b/site/.dots/local @@ -0,0 +1 @@ +../../local \ No newline at end of file diff --git a/Gemfile b/site/Gemfile similarity index 100% rename from Gemfile rename to site/Gemfile diff --git a/Gemfile.lock b/site/Gemfile.lock similarity index 100% rename from Gemfile.lock rename to site/Gemfile.lock diff --git a/README.html b/site/README.html similarity index 68% rename from README.html rename to site/README.html index 5e16ff1..1899990 100644 --- a/README.html +++ b/site/README.html @@ -2,6 +2,6 @@ layout: page permalink: /README --- -{% capture readme_text %}{% include_relative README.md %}{% endcapture %} +{% capture readme_text %}{% include_relative .dots/README.md %}{% endcapture %} {% assign readme_text = (readme_text | newline_to_br | split: "
" | shift | shift | join: '' ) %} {{ readme_text | markdownify }} diff --git a/_config.yml b/site/_config.yml similarity index 100% rename from _config.yml rename to site/_config.yml diff --git a/_includes/head.html b/site/_includes/head.html similarity index 100% rename from _includes/head.html rename to site/_includes/head.html diff --git a/_scripts/partial-dl-test b/site/_scripts/partial-dl-test similarity index 100% rename from _scripts/partial-dl-test rename to site/_scripts/partial-dl-test diff --git a/css/main.scss b/site/css/main.scss similarity index 100% rename from css/main.scss rename to site/css/main.scss diff --git a/index.html b/site/index.html similarity index 78% rename from index.html rename to site/index.html index f7e6ae7..9ab07b5 100644 --- a/index.html +++ b/site/index.html @@ -1,4 +1,4 @@ --- --- -{% include_relative local/bin/dots %} +{% include_relative .dots/local/bin/dots %} # diff --git a/partial-dl-test.html b/site/partial-dl-test.html similarity index 100% rename from partial-dl-test.html rename to site/partial-dl-test.html