page.go 154 B

1234567891011
  1. package static
  2. import "html/template"
  3. type page struct {
  4. Name string
  5. Version string
  6. Nav []navigation
  7. Depth string
  8. Content template.HTML
  9. }