/UKRSE.github.io

Website for the UK Society of Research Software Engineers

Primary LanguageHTMLMIT LicenseMIT

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 git@github.com: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.