https://github.com/cocktailjs/cocktailjs.github.io
Repository for cocktailjs.github.io
https://github.com/cocktailjs/cocktailjs.github.io
Last synced: 3 months ago
JSON representation
Repository for cocktailjs.github.io
- Host: GitHub
- URL: https://github.com/cocktailjs/cocktailjs.github.io
- Owner: CocktailJS
- Created: 2013-03-24T20:27:36.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-03-24T08:39:42.000Z (about 10 years ago)
- Last Synced: 2025-12-20T14:30:13.726Z (6 months ago)
- Language: HTML
- Homepage: http://cocktailjs.github.io
- Size: 972 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#Repository for CocktailJS page
The CocktailJS page is built using [Jekyll](http://jekyllrb.com)
##Contributing
If you feel something is wrong, poorly worded, or you've found a typo please open an issue [here](https://github.
com/CocktailJS/cocktailjs.github.io/issues).
Or, you can fork the repository and contribute directly by fixing the issue, adding a new post or creating a new guide. All help is greately appreciated.
##Posts & Guides
Please keep the current formatting. We use markdown for almost everything.
###Add a new Post
To add a new post, just create a new file under `_posts/blog` folder. Just keep the header as in others files:
```
---
layout: post
title:
category: blog
tags: [ ]
comments: true
---
```
###Add a new Guide
For guides, create a new file under `_posts/guides` and keep the header information:
```
---
layout: guide
title:
category: guides
tags: []
comments: true
---
```
Tags MUST contain at least one of the items in the tags list defined in guides/index.md
##Test it locally
Just run on the folder where you forked or cloned this repository
```bash
$ jekyll serve
```
Then open [http://localhost:4000](http://localhost:4000) on your browser.