Introduction
PuGo is a simple static site generator by Golang. It compiles markdown to site pages with beautiful theme. No dependencies, cross platform and very fast.

Quick start
- Download from PuGo and extract zip archive.
- Run
pugo new siteto create new default site. - Run
pugo server, openhttp://localhost:9899to visit.
Commands
Run a command when run pugo executable file:
pugo newcreate new site, post or page.pugo buildbuild static files.pugo serverbuild and serve static files.
More details in Documentation.
Writing
PuGo support two kinds of content, post and page. you can create any .md file in proper directories in source directory. Read the wiki to learn the layout format and more details.
Compile
After you change your source .md files, run
pugo build
To build static files.
Customize
- Theme: theme documentation is Here