summary refs log tree commit diff stats
path: root/handler/web/page.go
blob: 1f457dedd442e2ebec52389505d5ffe9ff458c7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package web

import (
	"html/template"
)

// Page holds page information that is sent to all webpages rendered
// by perseus.
type Page struct {
	SafeList []template.HTML
	List     []string
	Error    []string
	Success  []string
	Notice   []string
	Version  string
}