The new ADI internet experience developed with jekyll and GitHub Pages.
Site: adicu.com Alternative Address: adicu.github.com
-
Ruby - Jekyll requires the ruby language. If you've got a Mac, you've most likely already got Ruby. If you open up the terminal application, and run the command
ruby --version
you can confirm this. Your Ruby version should begin with 1.9.3 or 2.0.0. If you've got that, you're all set. Skip to step #2. Otherwise, follow these instructions to install Ruby. -
Bundler - Bundler is a package manager that makes versioning Ruby software like Jekyll a heck of a lot easier and is highly recommended if you're going to be building GitHub Pages sites locally. If you don't already have Bunder installed, you can install it by running the command
gem install bundler
(usesudo gem install bundler
if you get permission errors). -
Jekyll - The main event. Simply run the command,
bundle install
and you're good to go (usesudo bundle install
if you get permission errors). -
Node.js - Run
npm
. If you see a message that starts withUsage: npm <command>
then you can skip this step. Go to Node Download Page and run the installer that's appropriate for your computer. -
Grunt - run
npm install
and thengrunt
to concatenate and compile LESS. Usegrunt watch
to automatically update CSS files. -
Run the server by executing
jekyll serve --watch
in the root directory of the site. -
Visit
http://localhost:4000/
inInternet Exploreryour browser.
For more installation instructions and information, check out jekyll's installation page, or this Windows installation tutorial. To learn more about jekyll, check out its GitHub repo.
-
Run
./newpost.sh title type
wheretitle
is the short title of your post (which will be used in the URL), andtype
is one of the template types in the _templates directory. Thetitle
should be lowercase words separated by dashes, and thetype
should be a.md
file.# Examples ./newpost.sh my-cool-post blogpost.md ./newpost.sh a-great-resource resource.md
-
Fill out your post in the newly created file.
-
Commit and push the file to
origin/master
.
Events posted to Google Calendar should have the following format:
[short description]
-----------
[long description]
-----------
resource1 name-->resource1 link
resource2 name-->resource2 link
etc.
All of the resource links will be made available in a javascript object to implement features on the website. Resources currently used on the website are:
- image-->image link | A cover image for the events slider. If this is not provided a default image will be used.
- slides-->slides link | A link to presentation slides relevant to the event.