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 site
to create new default site. - Run
pugo server
, openhttp://localhost:9899
to visit.
Commands
Run a command when run pugo
executable file:
pugo new
create new site, post or page.pugo build
build static files.pugo server
build 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