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

import "html/template"

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