Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.26 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.26 KB

UKRSE.github.io

This page is built using Jekyll and Liquid for Designers

It is published using Github Pages at http://www.rse.ac.uk/

See _layouts/default.html for the layout and stylesheets/stylesheet.css for the styles.

To make new pages, create files called foo.md containing YAML frontmatter:

---
title: The title
layout: default
short: Shortname
---

followed by content in Markdown.

You can edit the content online in the Github live editor, or clone it in git and work offline:

git clone [email protected]:UKRSE/UKRSE.github.io.git
cd UKRSE.github.io

Then to run Jekyll you can either install it locally:

gem install jekyll
jekyll serve

Or you can use docker. This has the advantage of more closely mimicking the GitHub Pages setup:

docker run -it --rm \
  --name jekyll \
  --volume=$(pwd):/srv/jekyll \
  -p 4000:4000 \
  jekyll/jekyll:pages

In either case, once Jekyll is running, point your browser at http://localhost:4000 to view the site.