"Foxfooding" is the app and website for Mozilla's "Foxfooding" program, which aims to get Firefox OS in the hands of Mozillians.
Want to contribute to the app? It's simple.
-
Install Jekyll. You may have to first install RVM and Ruby, and Homebrew if you're on OS X.
-
Clone this repo.
-
Run
jekyll serve --watch --baseurl=/
, then navigate tohttp://localhost:4000
in your browser.
Posts all go into the _posts
folder. They are named with the following structure: YYYY-MM-DD-title.md
The YYYY-MM-DD
part of this is important, as that's where the date of the post is pulled from for presentation purposes. The title
part can be whatever you want, but should ideally be a shortened and hyphenated version of the user-visible title of the article.
The body of the file must be in the following format:
---
layout: post
title: %title%
type: %type%
author: %author%
---
%content%
- %title% is the title as it should appear to users.
- %type% is the type of the article, for the purposes of putting it into a section. It should be one of: news, update, issue
- %author% is the name of the author. We recommend a format of "First name Last name (:nick)", e.g. "Doug Sherk (:drs)"
- %content% is some markdown and/or HTML for the body text.
We're using GitHub Pages for deployment. To deploy, all you have to do is commit your changes and make a pull request.
If you'd like to be a collaborator, please contact Doug Sherk (:drs).