https://github.com/tadatuta/bb
static blog generation with BEM
https://github.com/tadatuta/bb
Last synced: 3 months 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 (about 11 years ago)
- Default Branch: CI
- Last Pushed: 2016-06-06T12:06:22.000Z (about 9 years ago)
- Last Synced: 2025-03-28T23:11:15.559Z (4 months ago)
- Language: JavaScript
- Homepage: http://tadatuta.github.io/bb/
- Size: 252 KB
- Stars: 4
- Watchers: 4
- 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.