Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nickpegg/posty
A simple static website generator
https://github.com/nickpegg/posty
Last synced: about 2 months ago
JSON representation
A simple static website generator
- Host: GitHub
- URL: https://github.com/nickpegg/posty
- Owner: nickpegg
- License: mit
- Created: 2010-08-29T23:52:57.000Z (over 14 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T04:19:33.000Z (4 months ago)
- Last Synced: 2024-10-31T19:14:52.115Z (2 months ago)
- Language: Python
- Homepage:
- Size: 772 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Posty
[![Build Status](https://travis-ci.org/nickpegg/posty.svg?branch=release-2.0)](https://travis-ci.org/nickpegg/posty) [![Documentation Status](https://readthedocs.org/projects/posty/badge/?version=latest)](http://posty.readthedocs.io/en/latest/?badge=latest)
A simple static site generator tool. Reads in a series of posts and pages
containing YAML metadata and Markdown text, and renders them as HTML.This is what powers [my personal website](https://nickpegg.com).
This was mostly written for fun. There are other, probably better and
definitely more full-featured static site generators out there.## Super-Quickstart
```
$ posty init
$ vim pages/blah.yaml
$ vim posts/1970-01-01_my-post.yaml
$ posty build
# Then deploy to your web server
```Go check out [the docs](http://posty.readthedocs.io/) for a more info.