The backend for the AiteStory website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
342 B

package viewmodel
import "git.aiterp.net/AiteRP/aitestory/model"
// IndexBase is used for the index menu.
type IndexBase struct {
Categories []model.PageCategory
ActiveTag model.Tag
ActiveAuthor string
ActiveDate string
ActiveDatePath string
}
func (im *IndexBase) setupMenu() {
im.Categories = model.PageCategories
}