Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tadatuta/bb
static blog generation with BEM
https://github.com/tadatuta/bb
Last synced: 30 days ago
JSON representation
static blog generation with BEM
- Host: GitHub
- URL: https://github.com/tadatuta/bb
- Owner: tadatuta
- Created: 2014-06-16T12:36:41.000Z (over 10 years ago)
- Default Branch: CI
- Last Pushed: 2016-06-06T12:06:22.000Z (over 8 years ago)
- Last Synced: 2024-10-05T08:41:36.971Z (about 1 month ago)
- Language: JavaScript
- Homepage: http://tadatuta.github.io/bb/
- Size: 252 KB
- Stars: 5
- Watchers: 5
- Forks: 4
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BB
## Installation
Run in terminal
```bash
git clone https://github.com/tadatuta/bb.git
cd bb
npm i
```## Rebuild and start the server
```bash
npm start
```## Rebuild content
```bash
npm run build
```## Content
To generate static pages put markdown files into `content/pages` with `lang.md` suffixes (e.g. `index.en.md`).
To generate blog roll put markdowns into `content/blog` folder.
You may use yaml header to set title and tags like this:```
---
title: Post title
tags:
- tag1
- tag2
- tag3
---
```Open http://localhost:8080/ in browser to see the result.