living-styleguide-template

A template for MediaWiki's Living Styleguide

Stars
0

Living Styleguide Template

An example HTML page for the living styleguide. It implements the the following mock up:

You can checkout a demo of the page and also take a look at the issues. These are both current bugs and things that we need to figure out.

Usage

Install bower components and run an HTTP server.

$ bower install
$ python -m simpleHTTPServer 8181
$ open localhost:8181

Updating demo

Switch to the gh-pages branch, remove .gitignore so that bower_components/ can be added and then force push.

$ git checkout -b gh-pages
$ git rm .gitignore
$ git add .
$ git commit -m "Seed gh-pages"
$ git push origin gh-pages --force
$ git checkout master
$ git branch -D gh-pages