Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bugzilla/bugzilla.github.io
The official Bugzilla website
https://github.com/bugzilla/bugzilla.github.io
bugzilla jekyll
Last synced: about 1 month ago
JSON representation
The official Bugzilla website
- Host: GitHub
- URL: https://github.com/bugzilla/bugzilla.github.io
- Owner: bugzilla
- License: other
- Created: 2017-09-06T15:12:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-29T06:29:29.000Z (about 2 months ago)
- Last Synced: 2024-10-29T07:24:05.304Z (about 2 months ago)
- Topics: bugzilla, jekyll
- Language: HTML
- Homepage: https://www.bugzilla.org/
- Size: 13.5 MB
- Stars: 9
- Watchers: 12
- Forks: 19
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: security/atom.xml
- Support: support/consulting.md
Awesome Lists containing this project
README
# www.bugzilla.org #
This is the code for the www.bugzilla.org website. It uses GitHub Pages,
and so both Jekyll and the Liquid template engine.## Editing Files ##
Files with a .html extension can be processed by the templating engine but
can't have Markdown syntax. Files with a .md extension can have Markdown
syntax (which also permits embedded HTML).Jekyll's templating engine is Liquid. Reference:
https://github.com/Shopify/liquid/wiki/Liquid-for-DesignersHere are the available template variables:
https://jekyllrb.com/docs/variables/Markdown syntax reference:
https://daringfireball.net/projects/markdown/syntaxA file needs to have YAML Front Matter to be processed by the templating
engine (and so to have e.g. the bugzilla.org header, footer and nav applied).
Front Matter looks like this at the top of the file:```
---
title: "My Page Title"
---
```Other parameters, or no parameters, can go between the three dashes.
## Local Development ##If you want to test this site locally before deploying it, you will need to
set up a local instance of Jekyll. See:https://help.github.com/articles/setting-up-your-github-pages-site-locally-with-jekyll/
The magic incantation to run the local server is:
`bundle exec jekyll serve`
Then visit:
`http://127.0.0.1:4000/`