all repos — nirvash @ 37d184b3e228e0b43aa54fb45275131f46540229

modular CMS using the quartzgun library

archetype/page.go (raw)

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

import (
	"time"
)

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