all repos — nirvash @ bea90e0e1c7f915e8156b691470241ce04f1a97d

modular CMS using the quartzgun library

page/page.go (raw)

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

import (
	"time"
)

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