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