zeus.ugent.be/README.md

94 lines
2.2 KiB
Markdown
Raw Normal View History

2016-06-09 13:04:10 +00:00
# zeus.ugent.be
2016-07-18 11:56:23 +00:00
[![Build Status](https://travis-ci.org/ZeusWPI/zeus.ugent.be.svg?branch=master)](https://travis-ci.org/ZeusWPI/zeus.ugent.be)
2016-06-09 13:04:10 +00:00
2016-08-23 18:21:02 +00:00
## Setup
### Installation
2016-06-09 13:04:10 +00:00
2016-06-10 10:22:59 +00:00
```bash
bundle install
2016-07-28 09:48:35 +00:00
npm install
2016-06-10 10:22:59 +00:00
```
2016-06-09 13:04:10 +00:00
2016-08-23 18:21:02 +00:00
### Developing
2016-06-09 13:04:10 +00:00
```bash
2016-08-21 16:03:53 +00:00
bundle exec nanoc live
2016-06-09 13:04:10 +00:00
```
2016-08-21 16:03:53 +00:00
This will spawn a webserver, and automatically recompile the site
when files get changed.
2016-06-09 18:20:22 +00:00
2016-08-23 18:21:02 +00:00
### Deploying
2016-06-09 18:20:22 +00:00
2016-07-19 11:43:32 +00:00
The latest builds on master get deployed automatically using [travis](https://travis-ci.org).
For manual deployment, run
2016-06-09 18:20:22 +00:00
```bash
bundle exec nanoc deploy --target public
```
2016-08-23 18:21:02 +00:00
2016-09-03 21:39:14 +00:00
## Posts
Posts should be written in [kramdown](http://kramdown.gettalong.org/index.html), a markdown superset which has a very complete [syntax guide](http://kramdown.gettalong.org/syntax.html).
2016-12-06 09:27:57 +00:00
Meta-tags:
| Name | Type | Required |
|-------------|--------|----------|
| :title | String | yes |
| :created_at | Date | yes |
| :description| String | no |
| :author | String | no |
| :lang | String | no |
2016-08-23 18:21:02 +00:00
## Events
Example structure:
```
content/
assets/
events/
15-16/
16-17/
battlebots/
main.md
intro.md
codenight.md
finale.md
awk.md
sed.md
ruby.md
index.erb
```
### Metadata
Every event is a `.md` file with the following metadata tags:
2016-12-06 09:27:57 +00:00
| Name | Type | Required |
|--------------|--------|----------|
| :title | String | yes |
| :time | Date | yes |
| :location | String | yes |
| :description | String | no |
| :created_at | Date | no |
| :locationlink| String | no |
| :facebook | URL | no |
| :banner | URL | no |
| :image | URL | no |
2016-08-23 18:21:02 +00:00
### Grouped events
If there's a series of events (for example summer code nights) these can be grouped by creating a folder containing a `main.md`, which will need the following metadata:
2016-12-06 09:27:57 +00:00
| Name | Type | Required |
|--------------|--------|----------|
| :title | String | yes |
| :location | String | no |
| :banner | URL | no |
2016-08-23 18:21:02 +00:00
Other `.md` files made in that folder are sub-events which need to fit the [metadata description listed earlier](#metadata)