page.go 161 B

12345678910111213
  1. package staticmd
  2. import (
  3. "html/template"
  4. )
  5. type Page struct {
  6. Name string
  7. Version string
  8. Nav []Navigation
  9. Depth string
  10. Content template.HTML
  11. }