123456789101112131415161718192021222324252627282930 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- {{ partial "headers.html" . }}
- </head>
- <body>
- <div id="all">
- {{ partial "nav.html" . }}
- <div class="reserve d-flex flex-column">
- <a href="https://maac.io/1Pife" target="_blank">
- <img src="/img/home/reserve.png" alt="">
- </a>
- <a href="/store/">
- <img src="/img/home/store-reserve.png" alt="">
- </a>
- </div>
- {{ block "main" . }}
- {{ end }}
- {{ partial "footer.html" . }}
- </div>
- {{ partial "scripts.html" . }}
- </body>
- </html>
|