baseof.html 546 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. {{ partial "headers.html" . }}
  8. </head>
  9. <body>
  10. <div id="all">
  11. {{ partial "nav.html" . }}
  12. <div class="reserve">
  13. <a href="/store/">
  14. <img src="/img/home/reserve.png" alt="">
  15. </a>
  16. </div>
  17. {{ block "main" . }}
  18. {{ end }}
  19. {{ partial "footer.html" . }}
  20. </div>
  21. {{ partial "scripts.html" . }}
  22. </body>
  23. </html>