<!DOCTYPE html>
<html lang="{{ lang }}" class="theme-{{ userUiConfig.theme }}" dir="{{ uiTextDirection }}" data-mode="{{ userUiConfig.mode }}">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1,width=device-width">
    <meta name="color-scheme" content="dark light">
    <title>{{ projectName }}</title>
    <script src="/{{ projectName }}/js/iframe{% if isBuild %}.build{% endif %}.js" {% if miyagiDev %} type="module" {% endif %}{% if prod %}
      defer{% endif %}></script>
    <link rel="stylesheet" href="/{{ projectName }}/css/iframe.css">
		{% block additionalCss %}{% endblock %}
    <style>
      {{ theme.css }}
    </style>
    <script>
      {{ theme.js }}
    </script>
  </head>
  <body>
    {% block body %}{% endblock %}
  </body>
</html>
