diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/meta.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/meta.go b/meta/meta.go index a00504b..0aa8979 100644 --- a/meta/meta.go +++ b/meta/meta.go @@ -7,10 +7,12 @@ import "ricketyspace.net/peach/version" type Meta struct { Version string + Title string } func NewMeta() *Meta { m := new(Meta) m.Version = version.Version + m.Title = "about" return m } |