base.tmpl 307 B

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. {{template "base/head" .}}
  5. {{template "head" .}}
  6. </head>
  7. <body>
  8. <noscript>Please enable JavaScript in your browser!</noscript>
  9. {{template "base/navbar" .}}
  10. <div class="container">
  11. {{template "body" .}}
  12. </div>
  13. {{template "base/footer" .}}
  14. </body>
  15. </html>