baseof.html 686 B

123456789101112131415161718192021222324252627282930
  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 d-flex flex-column">
  13. <a href="https://maac.io/1Pife" target="_blank">
  14. <img src="/img/home/reserve.png" alt="">
  15. </a>
  16. <a href="/store/">
  17. <img src="/img/home/store-reserve.png" alt="">
  18. </a>
  19. </div>
  20. {{ block "main" . }}
  21. {{ end }}
  22. {{ partial "footer.html" . }}
  23. </div>
  24. {{ partial "scripts.html" . }}
  25. </body>
  26. </html>