選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

layout.antlers.html 597B

123456789101112131415
  1. <!doctype html>
  2. <html lang="{{ site:short_locale }}">
  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">
  7. <title>{{ title ?? site:name }}</title>
  8. {{ vite src="resources/js/site.js|resources/css/site.css" }}
  9. </head>
  10. <body class="bg-gray-100 font-sans leading-normal text-gray-800">
  11. <div class="mx-auto px-2 lg:min-h-screen flex flex-col items-center justify-center">
  12. {{ template_content }}
  13. </div>
  14. </body>
  15. </html>