baseof.html 720 B

12345678910111213141516171819202122232425262728
  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
  14. href="https://ocard.co/q?s=mV8ggl&qtk=LmybMx&_ga=2.252447817.1761930027.1658133789-1993023897.1656902976">
  15. <img src="/img/home/線上預約icon.png" alt="">
  16. </a>
  17. </div>
  18. {{ block "main" . }}
  19. {{ end }}
  20. {{ partial "footer.html" . }}
  21. </div>
  22. {{ partial "scripts.html" . }}
  23. </body>
  24. </html>