Skip to content

Latest commit

 

History

History
48 lines (34 loc) · 1.45 KB

README.md

File metadata and controls

48 lines (34 loc) · 1.45 KB

UKRSE.github.io

This is the old UK RSE website source and no longer generates the pages at http://www.rse.ac.uk/

The new site uses Wordpress. To suggest changes or add jobs, events, RSE group entries etc, please contact [email protected]

This page is built using Jekyll and Liquid for Designers and published using Github Pages

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.