all repos — nirvash @ 1bc8eac481e6ad86ef61535d51bbfe0c0bb8dd99

modular CMS using the quartzgun library

archetype/page.go (raw)

1
2
3
4
5
6
7
8
9
10
11
12
package archetype

import (
	"time"
)

type Page struct {
	Title   string
	Slug string
	Content string
	Edited  time.Time
}