Home | History | Annotate | Download | only in wiki

Lines Matching full:title

15 	Title string
20 filename := p.Title + ".txt"
24 func loadPage(title string) (*Page, error) {
25 filename := title + ".txt"
30 return &Page{Title: title, Body: body}, nil
39 title := r.URL.Path[len("/view/"):]
40 p, _ := loadPage(title)
45 title := r.URL.Path[len("/edit/"):]
46 p, err := loadPage(title)
48 p = &Page{Title: title}