base2.tmpl 300 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>{{block "title" .}}Default Title{{end}}</title>
  6. </head>
  7. <body>
  8. {{block "extra" .}}{{end}}
  9. <div class="container">
  10. <h1 id="baseHead">Alternative base in a subdir</h1>
  11. {{ block "content" . }}{{end}}
  12. </div>
  13. </body>
  14. </html>