From 5b637bc5a2c81f847998b72c362bf4530ad4f760 Mon Sep 17 00:00:00 2001 From: Christopher Swiedler Date: Wed, 10 Feb 2021 17:24:42 -0800 Subject: [PATCH] Basic jekyll files --- docs/.gitignore | 6 +++++ docs/404.html | 25 +++++++++++++++++++ docs/Gemfile | 32 +++++++++++++++++++++++++ docs/_layouts/default.html | 49 -------------------------------------- 4 files changed, 63 insertions(+), 49 deletions(-) create mode 100644 docs/.gitignore create mode 100644 docs/404.html create mode 100644 docs/Gemfile delete mode 100644 docs/_layouts/default.html diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 00000000..a9cc8ab0 --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,6 @@ +_site +.sass-cache +.jekyll-cache +.jekyll-metadata +vendor +Gemfile.lock \ No newline at end of file diff --git a/docs/404.html b/docs/404.html new file mode 100644 index 00000000..086a5c9e --- /dev/null +++ b/docs/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 00000000..216dac70 --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,32 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 3.9.0" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "minima", "~> 2.5" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" +end + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] + +gem "github-pages", group: :jekyll_plugins + diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html deleted file mode 100644 index 17c61eb4..00000000 --- a/docs/_layouts/default.html +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - -{% seo %} - - - - -
-
-

{{ site.title | default: site.github.repository_name }}

- - {% if site.logo %} - Logo - {% endif %} - -

{{ site.description | default: site.github.project_tagline }}

-
-
- - {{ content }} - -
- -
- - {% if site.google_analytics %} - - {% endif %} - -