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

import "html/template"

// Page holds page information
type Page struct {
	SafeList []template.HTML
	List     []string
	Error    []string
	Success  []string
	Notice   []string
	Version  string
}