anschwa / gutenblog

HTML blogging platform written in Go.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project Gutenblog

Solo-blog

Working directory:
└── blog/
    ├── posts/
    │   └── hello-world/
    │       └── hello-world.txt
    ├── tmpl/
    │   ├── base.html.tmpl
    │   ├── home.html.tmpl
    │   └── post.html.tmpl
    │
    └── www/
        ├── assets/
        │   └── logo.png
        ├── css/
        │   └── style.css
        └── index.html

Output directory:
└── www/
    ├── assets/
    │   └── logo.png
    ├── foo/
    │   └── 2006/
    │       └── 01/
    │           └── 02/
    │               └── hello-world/
    │                   └── index.html
    ├── css/
    │   └── style.css
    └── index.html

Multi-blog

Working directory:
└── site/
    ├── blog/
    │   ├── bar/
    │   │   ├── posts/
    │   │   │    └── hello-bar/
    │   │   │        └── hello-bar.txt
    │   │   └── tmpl/
    │   │       ├── base.html.tmpl
    │   │       ├── home.html.tmpl
    │   │       └── post.html.tmpl
    │   └── foo/
    │       ├── posts/
    │       │     └── hello-foo/
    │       │         └── hello-foo.txt
    │       └── tmpl/
    │           ├── base.html.tmpl
    │           ├── home.html.tmpl
    │           └── post.html.tmpl
    │
    └── www/
        ├── assets/
        │   └── logo.png
        ├── blog/
        │   ├── bar/
        │   │   └── index.html
        │   ├── foo/
        │   │   └── index.html
        ├── css/
        │   └── style.css
        └── index.html

Output directory:
└── www/
    ├── assets/
    │   └── logo.png
    ├── blog/
    │   ├── bar/
    │   │   └── index.html
    │   │   └── 2006/
    │   │       └── 01/
    │   │           └── 02/
    │   │               └── hello-bar/
    │   │                   └── index.html
    │   └── foo/
    │       └── 2006/
    │           └── 01/
    │               └── 02/
    │                   └── hello-foo/
    │                       └── index.html
    ├── css/
    │   └── style.css
    └── index.html

About

HTML blogging platform written in Go.

License:BSD Zero Clause License


Languages

Language:Go 100.0%