HTML, SASS, Jekyll, and Ruby website for SFU Surge.
View the website at https://sfusurge.github.io/.
Setup Ruby and bundler.
Clone the repository and enter the directory:
git clone https://github.com/sfusurge/website.git
cd website/
Run the website locally:
bundle exec jekyll serve
This project uses a standard Jekyll project folder structure.
/_layouts - HTML templates/_includes - Snippets of HTML that can be included and reused in te layouts/_sass - SASS style sheets - currently not used, just put css in the assets folder/assets - images and other files_config.yml - contains strings and settings that the other files can referenceindex.html and _pages folder - The pages of the websiteAt the top of html files for pages there is some Jekyll front matter (denoted with ---) with the following properties:
title - The page title to appear in the browser title bar, bookmarks, etcpermalink - The part of the url after the base url that links to this pagelayout - Which layout file from /_layouts to use for the page.stylesheet_override - If the page should use a css file different than standard.css, specify it here