hlfw.ca

webbing

ref: 05d82d371ca4a2c56aaccdf65899e02b356a7950
dir: /header.go/

View raw version
package router

import (
	"golang.org/x/text/message"
)

func header(p *message.Printer, status string) map[string]string {
	return map[string]string{
		"home":    p.Sprint("Home"),
		"login":   p.Sprint("Login"),
		"logout":  p.Sprint("Logout"),
		"signup":  p.Sprint("Sign Up"),
		"profile": p.Sprint("Profile"),
		"status":  status,
	}
}