diff --git a/.gitignore b/.gitignore index 701b904..4f05c5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ +docs/Gemfile.lock +docs/_site/ + # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 diff --git a/docs/Gemfile b/docs/Gemfile new file mode 100644 index 0000000..8c81b25 --- /dev/null +++ b/docs/Gemfile @@ -0,0 +1,3 @@ + +source 'https://rubygems.org' +gem 'github-pages', group: :jekyll_plugins diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..5cc57b8 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,16 @@ +SHELL = /bin/bash + +# Just some commands to allow you to demo the jekyll site locally +# +# all the relevant details are here: +# https://help.github.com/en/articles/setting-up-your-github-pages-site-locally-with-jekyll + +# this needs to be run to download the neccessary gems +# should be only needed once +install: + bundle install + +# this is the actual command you need to to start the preview +demo: + bundle exec jekyll serve --watch + diff --git a/docs/ProjectFiles/index.html b/docs/ProjectFiles/index.html deleted file mode 100644 index c5489fb..0000000 --- a/docs/ProjectFiles/index.html +++ /dev/null @@ -1,27 +0,0 @@ - - - -
- - - - -
Instructor |
- + Michael Hewner | ++ hewner 'at' rose-hulman.edu |
Associate Professor of Computer Science and Software Engineering |
@@ -37,13 +39,13 @@
Student Assistants |
- - Derek Grayless - + Derek Grayless + |
+ + grayledw 'at' rose-hulman.edu |
Computer Science Major (Class of '21) @@ -54,9 +56,10 @@Python Programming Instruction / Projects |
- - Shijun Yu - + Shijun Yu + |
+ + yus3 'at' rose-hulman.edu |
Computer Science Major (Class of '19) diff --git a/docs/scripts/catapultLinks.js b/docs/scripts/catapultLinks.js index 0869ed0..61c2346 100644 --- a/docs/scripts/catapultLinks.js +++ b/docs/scripts/catapultLinks.js @@ -1,6 +1,6 @@ // List of links for Announcements tab and links table var announcementLinks = [ - {url: "ProjectFiles/", desc: "Helpful project samples (abstract, poster template, etc.)"} + {url: "https://github.com/RHIT-CSSE/catapult/tree/master/docs/ProjectFiles", desc: "Helpful project samples (abstract, poster template, etc.)"} ]; // List of links for Rose/catapult tab and links table |