An open API service indexing awesome lists of open source software.

https://github.com/stophecom/vrenetic.github.io

VRenetic
https://github.com/stophecom/vrenetic.github.io

Last synced: about 1 year ago
JSON representation

VRenetic

Awesome Lists containing this project

README

          

vrenetic.github.io
==================

http://www.vrenetic.com/

Static [jekyll](http://jekyllrb.com/) powered company website

- All posts are stored in the `_posts/` folder
- Images from posts are stored in the `img/posts/[year]/` folder

## Deploy

Use grunt to build a deployable version of Site. For that when you've done your changes, run `grunt develop` and commit any changed files together with your changes.

## Add Member

Go to https://vrentic.prismic.io/documents/working/. Press `New` button. Select `Team Member` type. Fill in the created item. Save and publish it. Now it's done. Congratulations!

## Add Blogpost

- Add a file with naming convention date-title.markdown (e.g. `2013-2-22-New-Post.markdown`) into `_posts/`
- Add post meta information (YAML), followed by markdown
- Use `` to slice your blogpost (only the content above is shown in preview mode)
- Include images using e.g `![Image Title](/img/posts/2013/customImage.jpg)`
- Include code using [Liquid](http://docs.shopify.com/themes/liquid-basics) syntax

### Example

```
---
layout: post
title: "New Post"
date: 2012-11-27 22:16:08
owner: John
tags: [node.js, performance]
---

Your Blogpost goes here...

...rest of the blogpost goes here.

// Images
![Image Title](/img/posts/2013/customImage.jpg)
```

## Test site locally

Make sure to install dependencies
```
bundle install
npm install
```
Build the site and serve it on `http://localhost:4000`
```
grunt develop
```
…this will also watch for changes, rebuild and trigger a *live reload*.

## Use docker

- install [docker](https://docs.docker.com/engine/installation/)
- run `docker-compose up` in this repo

You should have the website running on `http://localhost:4000` normally :)