<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
{{!-- https://webkit.org/blog/7367/new-interaction-behaviors-in-ios-10/ --}}
{{!-- https://webkit.org/blog/5610/more-responsive-tapping-on-ios/ --}}
{{!-- https://webkit.org/blog/7929/designing-websites-for-iphone-x/ --}}
{{#if htmlWebpackPlugin.options.enableUserScalable}}
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover"/>
{{else}}
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
{{/if}}
<meta http-equiv="x-ua-compatible" content="ie=edge"/>
{{!-- https://github.com/joshbuchea/HEAD/#browsers-chinese --}}
{{!-- https://browser.360.cn/se/help/kernel.html --}}
{{!-- https://browser.qq.com/faq/#/detail/36 --}}
<meta name="renderer" content="webkit"/>
{{!-- http://www.uc.cn/business/developer/ --}}
<meta name="layoutmode" content="standard"/>
{{!-- Disabled the UC browser's "night mode" for this document --}}
<meta name="nightmode" content="disable"/>
{{!-- UC browser will display images even if in "text mode" --}}
<meta name="imagemode" content="force"/>
{{!-- Disable the UC browser's feature of "scaling font up when there are many words in this document" --}}
<meta name="wap-font-scale" content="no"/>
{{!-- Disable automatic detection and formatting of possible phone numbers --}}
<meta name="format-detection" content="telephone=no"/>
<title>Loading...</title>
{{!-- https://github.com/joshbuchea/HEAD/#meta --}}
{{#if htmlWebpackPlugin.options.headHtml}}
  {{{htmlWebpackPlugin.options.headHtml}}}
{{/if}}
</head>
<body>
{{#if htmlWebpackPlugin.options.unsupportedBrowser}}
  <style>
  body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: white;
  }
  .unsupported-browser {
    margin: 100px auto;
    text-align: center;
    padding: 20px;
  }
  .unsupported-browser p {
    margin: 10px 0 0;
    color: #aaa;
  }
  </style>
  <div class="unsupported-browser">
    <p>
      Sorry, your browser is not supported. Please upgrade to the latest version or switch your browser to use this
      site. See <a href="http://outdatedbrowser.com/">outdatedbrowser.com</a> for options.
    </p>
  </div>
{{/if}}

{{#each htmlWebpackPlugin.options.appMountIds}}
  <div id="{{this}}"></div>
{{else}}
  <div id="{{htmlWebpackPlugin.options.appMountId}}"></div>
{{/each}}

{{#if htmlWebpackPlugin.options.bodyHtml}}
  {{{htmlWebpackPlugin.options.bodyHtml}}}
{{/if}}

</body>
</html>
