Skip to content

jmsgrogan/PyChaste.web

Repository files navigation

PyChaste Web

This repository contains the static source of the PyChaste website. It is forked from the Scala website repository.

It's a static site generated by Jekyll, and uses a whole host of open-source tools including a touch of Twitter's Bootstrap.

Dependencies

This site uses a Jekyll, a Ruby framework. The required Jekyll version is 3.1.6.

Building the site

There are two ways to run Jekyll to build the site:

  1. Using [Bundler], so Jekyll and accompanying gems are installed only inside this directory.
  2. Using globally-installed Jekyll and accompanying gems.

The latter method is the one currently actually used on scala-lang.org. The former method is likely most convenient for users who already have a different version of Jekyll installed, or who are comfortable using Bundler and who don't want anything else installed system-wide.

Option 1) Building with Bundler

cd into the directory where you cloned this repository, then install the required gems with bundle install. This will automatically put the gems into ./bundle-vendor/bundle.

Start the server in the context of the bundle:

bundle exec jekyll serve

From this point, everything else should be the same, regardless of which method you used to run Jekyll.

Option 2) Building with global Jekyll

Install Jekyll 3.1.6 on your system using RubyGems:

gem install jekyll -v 3.1.6

After cloning, cd into the directory where you cloned this repository and run:

jekyll serve

and watch the output. You should see something like:

 Configuration file: /Users/ben/src/PyChaste.web/_config.yml
             Source: /Users/ben/src/PyChaste.web
        Destination: /Users/ben/src/PyChaste.web/_site
  Incremental build: enabled
       Generating... done.
  Auto-regeneration: enabled for '/Users/ben/src/PyChaste.web'

Windows and UTF-8

If you get incompatible encoding errors when generating the site under Windows, then ensure that the console in which you are running jekyll can work with UTF-8 characters. As described in the blog Solving UTF problem with Jekyll on Windows you have to execute chcp 65001. This command is best added to the jekyll.bat-script.

Viewing the site

Regardless of your method of running Jekyll, the generated site is available at http://localhost:4000.

If you add --watch to your Jekyll command line, Jekyll will automatically watch for changes on the filesystem. When you change a file, the console will show that jekyll is regenerating. Wait until it says done to refresh your browser.

YAML Front Matter

The "YAML Front Matter" is nothing more than the header on each page that you intend for Jekyll to parse. It contains information such as the name of the HTML template (layout) chosen for the specific document, and the title of the document. An example YAML front matter might look like:

---
layout: page
title: My page title
---

You can use these fields in the YAML front matter later in your document. For example, to make a header with the title of the document, in Markdown you would write:

---
layout: page
title: My page title
---

# {{ page.title }}

Body text here...

# {{ page.title }} would be rendered in HTML as, <h1>My page title</h1>.

Markdown

There are dozens of guides and cheatsheets that cover Markdown syntax out there, though this screenshot from the free OS X Markdown editor, Mou, is an excellent and concise reference:

Mou screen shot

Linking to internal pages

The least error-prone way to link between documents, to link to local images, or anything else: [link text]({{ site.baseurl }}/path/to/page/page.html)

Here, {{ site.baseurl }} is a site-wide variable that represents the root directory of the static site. So, to display the Scala logo image, located in img/scala-logo.png, one must simply write: ![Img alt text]({{ site.baseurl }}/resources/img/scala-logo.png)