mirror of
https://git.sr.ht/~adnano/kiln
synced 2024-12-02 13:45:11 +00:00
Update README.md
This commit is contained in:
parent
5c1f645617
commit
6d5e72513b
66
README.md
66
README.md
|
@ -46,6 +46,29 @@ Page templates are provided with the following information:
|
||||||
- `Permalink`: Permalink to the page
|
- `Permalink`: Permalink to the page
|
||||||
- `Content`: The contents of the file (including the title)
|
- `Content`: The contents of the file (including the title)
|
||||||
|
|
||||||
|
Pages can specify dates in their filenames. kiln will recognize the date and
|
||||||
|
remove it from the permalink.
|
||||||
|
|
||||||
|
Pages can also specify titles in their content. kiln will parse and remove the
|
||||||
|
title from the content. Example:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ cat src/hello-world.gmi
|
||||||
|
# Hello, world!
|
||||||
|
|
||||||
|
This is some content.
|
||||||
|
|
||||||
|
$ cat templates/page.gmi
|
||||||
|
Title: {{ .Title }}
|
||||||
|
Content:
|
||||||
|
{{ .Content }}
|
||||||
|
|
||||||
|
$ cat dst/hello-world.gmi
|
||||||
|
Title: Hello, world!
|
||||||
|
Content:
|
||||||
|
This is some content.
|
||||||
|
```
|
||||||
|
|
||||||
## Directories
|
## Directories
|
||||||
|
|
||||||
Directory templates are provided with the following information:
|
Directory templates are provided with the following information:
|
||||||
|
@ -55,6 +78,24 @@ Directory templates are provided with the following information:
|
||||||
- `Pages`: The pages in this directory
|
- `Pages`: The pages in this directory
|
||||||
- `Directories`: The subdirectories of this directory
|
- `Directories`: The subdirectories of this directory
|
||||||
|
|
||||||
|
Directory templates are written to `index.gmi` in the corresponding directory.
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```
|
||||||
|
$ ls src/posts/
|
||||||
|
src/posts/post-1.gmi
|
||||||
|
src/posts/post-2.gmi
|
||||||
|
|
||||||
|
$ cat templates/directory.gmi
|
||||||
|
{{ range .Pages }}
|
||||||
|
=> .Permalink
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
$ cat dst/posts/index.gmi
|
||||||
|
=> /posts/post-1.gmi
|
||||||
|
=> /posts/post-2.gmi
|
||||||
|
```
|
||||||
|
|
||||||
## Templates
|
## Templates
|
||||||
|
|
||||||
Templates are located in the `templates` directory.
|
Templates are located in the `templates` directory.
|
||||||
|
@ -63,3 +104,28 @@ There are currently two supported templates:
|
||||||
|
|
||||||
- `page.gmi`: The template used for pages
|
- `page.gmi`: The template used for pages
|
||||||
- `directory.gmi`: The template used for directories
|
- `directory.gmi`: The template used for directories
|
||||||
|
|
||||||
|
If `page.gmi` does not exist, kiln will simply copy pages from source to
|
||||||
|
destination. If `directory.gmi` does not exist, directory index files will not
|
||||||
|
be created.
|
||||||
|
|
||||||
|
## Permalinks
|
||||||
|
|
||||||
|
Every page and directory in the site is assigned a path and a permalink.
|
||||||
|
|
||||||
|
```
|
||||||
|
file: src/posts/2020-09-22-hello-world.gmi
|
||||||
|
path: posts/2020-09-22-hello-world.gmi
|
||||||
|
permalink: /posts/hello-world.gmi
|
||||||
|
```
|
||||||
|
|
||||||
|
Paths are relative and point to the source file.
|
||||||
|
Permalinks are absolute and point to the destination file.
|
||||||
|
|
||||||
|
Here is an example of a directory:
|
||||||
|
|
||||||
|
```
|
||||||
|
directory: src/posts/
|
||||||
|
path: posts
|
||||||
|
permalink: /posts/
|
||||||
|
```
|
||||||
|
|
4
kiln.go
4
kiln.go
|
@ -10,6 +10,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Site represents a kiln site.
|
||||||
type Site struct {
|
type Site struct {
|
||||||
Static map[string][]byte // Static files
|
Static map[string][]byte // Static files
|
||||||
Directory *Directory // Site directory
|
Directory *Directory // Site directory
|
||||||
|
@ -127,6 +128,7 @@ type Page struct {
|
||||||
|
|
||||||
var titleRE = regexp.MustCompile("^# ?([^#\r\n]+)\r?\n?\r?\n?")
|
var titleRE = regexp.MustCompile("^# ?([^#\r\n]+)\r?\n?\r?\n?")
|
||||||
|
|
||||||
|
// NewPage returns a new Page with the given path and content.
|
||||||
func NewPage(path string, content string) *Page {
|
func NewPage(path string, content string) *Page {
|
||||||
// Try to parse the date from the page filename
|
// Try to parse the date from the page filename
|
||||||
var date time.Time
|
var date time.Time
|
||||||
|
@ -185,7 +187,7 @@ type Directory struct {
|
||||||
Index *Page
|
Index *Page
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewSection returns a new Section with the given path.
|
// NewDirectory returns a new Directory with the given path.
|
||||||
func NewDirectory(path string) *Directory {
|
func NewDirectory(path string) *Directory {
|
||||||
var permalink string
|
var permalink string
|
||||||
if path == "" {
|
if path == "" {
|
||||||
|
|
Loading…
Reference in a new issue