Timers and other features for Heroes of the Storm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

59 lines
2.9 KiB

  1. <!--
  2. Copyright © 2021 Adrien Agez <adrien.agez@pm.me>
  3. This file is part of Nexus Timers.
  4. Nexus Timers is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Affero General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. Nexus Timers is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Affero General Public License for more details.
  12. You should have received a copy of the GNU Affero General Public License
  13. along with Nexus Timers. If not, see <https://www.gnu.org/licenses/>.
  14. -->
  15. <!DOCTYPE html>
  16. <html lang="en">
  17. <head>
  18. <meta charset="utf-8">
  19. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  20. <meta name="viewport" content="width=device-width, initial-scale=1">
  21. <title>Nexus Timers</title>
  22. <link rel="icon" type="image/png" sizes="32x32" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-32x32.png">
  23. <link rel="icon" type="image/png" sizes="16x16" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/favicon-16x16.png">
  24. <!--[if IE]><link rel="shortcut icon" href="/static/img/icons/favicon.ico"><![endif]-->
  25. <!-- Add to home screen for Android and modern mobile browsers -->
  26. <link rel="manifest" href="<%= htmlWebpackPlugin.files.publicPath %>static/manifest.json">
  27. <meta name="theme-color" content="#4DBA87">
  28. <!-- Add to home screen for Safari on iOS -->
  29. <meta name="apple-mobile-web-app-capable" content="yes">
  30. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  31. <meta name="apple-mobile-web-app-title" content="nexus-timers">
  32. <link rel="apple-touch-icon" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/apple-touch-icon-152x152.png">
  33. <link rel="mask-icon" href="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/safari-pinned-tab.svg" color="#4DBA87">
  34. <!-- Add to home screen for Windows -->
  35. <meta name="msapplication-TileImage" content="<%= htmlWebpackPlugin.files.publicPath %>static/img/icons/msapplication-icon-144x144.png">
  36. <meta name="msapplication-TileColor" content="#000000">
  37. <% for (var chunk of webpack.chunks) {
  38. for (var file of chunk.files) {
  39. if (file.match(/\.(js|css)$/)) { %>
  40. <link rel="<%= chunk.initial?'preload':'prefetch' %>" href="<%= htmlWebpackPlugin.files.publicPath + file %>" as="<%= file.match(/\.css$/)?'style':'script' %>"><% }}} %>
  41. </head>
  42. <body>
  43. <noscript>
  44. This application can only work with JavaScript enabled. <br />
  45. Please enable JavaScript on your browser.
  46. </noscript>
  47. <div id="app"></div>
  48. <!-- Todo: only include in production -->
  49. <%= htmlWebpackPlugin.options.serviceWorkerLoader %>
  50. <!-- built files will be auto injected -->
  51. </body>
  52. </html>