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