base.tmpl 277 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!-- complete base template -->
  5. <meta charset="utf-8" />
  6. <title>{{block "title" .}}Default Title{{end}}</title>
  7. </head>
  8. <body>
  9. {{block "extra" .}}{{end}}
  10. <div class="container">
  11. {{ block "content" . }}{{end}}
  12. </div>
  13. </body>
  14. </html>