breb 0.5.0

the blog/reblog library and command-line tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# basic metadata about your blog
blog:
  name: "my cool new blog"
  url: "https://example.com/"

serves:
# we want to serve files as-is from `static/` with the base url `/`
- as-is: /
  from: static/
# similarly: we want to serve *pages*, i.e. slightly munged html, from `pages/`, on the root
- pages: /
  from: pages/
# and serialized blogposts, we serve under `/posts`
- posts: /posts
  # (no `from` line needed -- it's inferred to match the url, by default)