https://github.com/stophecom/vrenetic.github.io
VRenetic
https://github.com/stophecom/vrenetic.github.io
Last synced: about 1 year ago
JSON representation
VRenetic
- Host: GitHub
- URL: https://github.com/stophecom/vrenetic.github.io
- Owner: stophecom
- Created: 2017-05-04T08:38:25.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T10:14:44.000Z (about 9 years ago)
- Last Synced: 2025-02-07T10:27:34.613Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://www.vrenetic.com
- Size: 143 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 ``
- 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

```
## 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 :)