From c842c635bba4a494b49f9f9dae3c7566ef6c3bd9 Mon Sep 17 00:00:00 2001 From: drewcassidy Date: Tue, 14 Nov 2017 22:49:46 -0800 Subject: [PATCH] Start adding delicious content --- .gitignore | 5 +++-- Gemfile | 2 ++ _config.yml | 1 + _includes/footer.html | 4 ++++ _includes/head.html | 9 +++++++++ _includes/header.html | 3 +++ _layouts/default.html | 15 +++++++++++++++ _svg/circuits1.svg | 13 +++++++++++++ _svg/circuits2.svg | 14 ++++++++++++++ index.html | 3 +++ 10 files changed, 67 insertions(+), 2 deletions(-) create mode 100644 Gemfile create mode 100644 _config.yml create mode 100644 _includes/footer.html create mode 100644 _includes/head.html create mode 100644 _includes/header.html create mode 100644 _layouts/default.html create mode 100644 _svg/circuits1.svg create mode 100644 _svg/circuits2.svg create mode 100644 index.html diff --git a/.gitignore b/.gitignore index 5c91b60..666de10 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ -_site/ -.sass-cache/ +_site +.sass-cache .jekyll-metadata +Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..053c27d --- /dev/null +++ b/Gemfile @@ -0,0 +1,2 @@ +source 'https://rubygems.org' +gem 'github-pages' diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..405e71f --- /dev/null +++ b/_config.yml @@ -0,0 +1 @@ +permalink: pretty diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..e9b4cf9 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/_includes/head.html b/_includes/head.html new file mode 100644 index 0000000..f27fe36 --- /dev/null +++ b/_includes/head.html @@ -0,0 +1,9 @@ + + + {% if page.title %} {{ page.title }} | {% endif %} Andrew Cassidy + + + + + + \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..14686eb --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,3 @@ +
+

Andrew Cassidy

+
\ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..298f503 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,15 @@ + + + {% include head.html %} + +
+ {% include header.html %} + +
+ {{ content }} +
+ + {% include footer.html %} +
+ + \ No newline at end of file diff --git a/_svg/circuits1.svg b/_svg/circuits1.svg new file mode 100644 index 0000000..9cca7e9 --- /dev/null +++ b/_svg/circuits1.svg @@ -0,0 +1,13 @@ + + + + + + image/svg+xml + + + + + + + diff --git a/_svg/circuits2.svg b/_svg/circuits2.svg new file mode 100644 index 0000000..61bc7d9 --- /dev/null +++ b/_svg/circuits2.svg @@ -0,0 +1,14 @@ + + + + + +image/svg+xml + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..036c436 --- /dev/null +++ b/index.html @@ -0,0 +1,3 @@ +--- +layout: default +--- \ No newline at end of file