From 3c50b1c99ae0288b3851aef501044daaa1cc4f62 Mon Sep 17 00:00:00 2001 From: BigBlueHat Date: Mon, 30 Jan 2017 10:59:44 -0500 Subject: [PATCH 01/11] Initial Jekyll-ization --- .gitignore | 1 + _config.yml | 20 ++++++++++++++++ _includes/foot.html | 15 ++++++++++++ _includes/head.html | 38 +++++++++++++++++++++++++++++++ _layouts/default.html | 5 ++++ index.html | 41 +++------------------------------ learn.html | 53 +++---------------------------------------- 7 files changed, 85 insertions(+), 88 deletions(-) create mode 100644 _config.yml create mode 100644 _includes/foot.html create mode 100644 _includes/head.html create mode 100644 _layouts/default.html diff --git a/.gitignore b/.gitignore index 5b71628a9..edf5fc964 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.sw[op] .DS_Store node_modules +_site diff --git a/_config.yml b/_config.yml new file mode 100644 index 000000000..172d4ca85 --- /dev/null +++ b/_config.yml @@ -0,0 +1,20 @@ +# Based off GitHub defaults +# https://help.github.com/articles/configuring-jekyll/#defaults-you-can-change +github: [metadata] +kramdown: + input: GFM + hard_wrap: false +gems: + - jekyll-paginate + +# GitHub sets these--and they cannot be changed there +# https://help.github.com/articles/configuring-jekyll/#configuration-settings-you-cannot-change +lsi: false +safe: true +#source: [your repo's top level directory] +incremental: false +highlighter: rouge +gist: + noscript: false +kramdown: + math_engine: mathjax diff --git a/_includes/foot.html b/_includes/foot.html new file mode 100644 index 000000000..c61deef5a --- /dev/null +++ b/_includes/foot.html @@ -0,0 +1,15 @@ + +
+ + + + + + + + diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 000000000..6182578da --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,38 @@ + + + + JSON-LD - JSON for Linking Data + + + + + + + + + + + + + + + + + + diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 000000000..fe26e1919 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,5 @@ +{% include head.html %} + +{{ content }} + +{% include foot.html %} diff --git a/index.html b/index.html index a9db87ffd..3e137d192 100644 --- a/index.html +++ b/index.html @@ -1,41 +1,6 @@ - - - - JSON-LD - JSON for Linking Data - - - - - - - - - - - - - - - - - - +--- +layout: default +---