HTML CSS web design tutorial for Coder Dojo Belfast by Rob Graham.
This site is hosted on GitHub Pages so you will need to jump the gh-pages
branch to see the Jekyll source code.
Clone this repository into a dir called coder_dojo_web_design_site
$ git clone https://github.com/altabyte/coder-dojo-web-design.git coder_dojo_web_design_site
Switch to the gh-pages branch
$ git checkout gh-pages
Install the gems listed in the Gemfile.
$ bundle install --path=.bundle
Launch the localhost server
$ bundle exec jekyll serve --baseurl '' --port 4040
The site should then be available locally on port 4040 http://localhost:4040/
Without --baseurl '' the localhost URL will be
http://localhost:4040/coder-dojo-web-design/
The default port for Jekyll is 4000, however NX Server also uses this port so I use port 4040 locally.