https://github.com/actor-framework/actor-framework.github.io
Content for www.actor-framework.org.
https://github.com/actor-framework/actor-framework.github.io
Last synced: 5 months ago
JSON representation
Content for www.actor-framework.org.
- Host: GitHub
- URL: https://github.com/actor-framework/actor-framework.github.io
- Owner: actor-framework
- Created: 2014-09-30T19:50:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-07-26T07:03:20.000Z (almost 2 years ago)
- Last Synced: 2025-06-24T10:58:47.514Z (12 months ago)
- Language: HTML
- Homepage:
- Size: 10.9 MB
- Stars: 1
- Watchers: 12
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
About
=====
This repository contains the sources for CAF's Dev Blog.
Jekyll Setup for Local Testing
==============================
You will need to install ruby, nodejs, rdiscount, and jekyll:
```
$PKG_MGR install ruby nodejs
gem install jekyll rdiscount jekyll-paginate
```
To browse the blog locally on port 4000, run:
```
jekyll serve --watch
```
Create a New Blog Post
======================
To add a new blog post, you will need to create a new file with current date
and post title as file name (all lowercase and using `-` instead of
whitespaces). The new file must contain a Jekyll header followed by Markdown
formatted text. To get the boilerplate code out of the way, you can use the
file `template.md`:
```
cp template.md _posts/$(date +%F)-awesome-news.md
vim $(date +%F)-awesome-news.md
```
Fill out the `title`, `author`, and `tags` fields accordingly. In case you are
not registered as author yet, add your author short name (as key), display
name, email, and GitHub account name to the file `_config.yml`.