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.

index.html 1.9KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8" charset="UTF-8"/>
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <link rel="apple-touch-icon" href="%WEB_CONTEXT%/apple-touch-icon.png">
  7. <link rel="apple-touch-icon" sizes="57x57" href="%WEB_CONTEXT%/apple-touch-icon-57x57.png">
  8. <link rel="apple-touch-icon" sizes="60x60" href="%WEB_CONTEXT%/apple-touch-icon-60x60.png">
  9. <link rel="apple-touch-icon" sizes="72x72" href="%WEB_CONTEXT%/apple-touch-icon-72x72.png">
  10. <link rel="apple-touch-icon" sizes="76x76" href="%WEB_CONTEXT%/apple-touch-icon-76x76.png">
  11. <link rel="apple-touch-icon" sizes="114x114" href="%WEB_CONTEXT%/apple-touch-icon-114x114.png">
  12. <link rel="apple-touch-icon" sizes="120x120" href="%WEB_CONTEXT%/apple-touch-icon-120x120.png">
  13. <link rel="apple-touch-icon" sizes="144x144" href="%WEB_CONTEXT%/apple-touch-icon-144x144.png">
  14. <link rel="apple-touch-icon" sizes="152x152" href="%WEB_CONTEXT%/apple-touch-icon-152x152.png">
  15. <link rel="apple-touch-icon" sizes="180x180" href="%WEB_CONTEXT%/apple-touch-icon-180x180.png">
  16. <link rel="icon" type="image/x-icon" href="%WEB_CONTEXT%/favicon.ico">
  17. <meta name="application-name" content="SonarQube"/>
  18. <meta name="msapplication-TileColor" content="#FFFFFF" />
  19. <meta name="msapplication-TileImage" content="%WEB_CONTEXT%/mstile-512x512.png" />
  20. <% for (var css in htmlWebpackPlugin.files.css) { %>
  21. <link href="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.css[css] %>" rel="stylesheet">
  22. <% } %>
  23. <title>SonarQube</title>
  24. </head>
  25. <body>
  26. <div id="content"></div>
  27. <script>window.baseUrl = '%WEB_CONTEXT%';</script>
  28. <% for (var chunk in htmlWebpackPlugin.files.chunks) { %>
  29. <script src="%WEB_CONTEXT%/<%= htmlWebpackPlugin.files.chunks[chunk].entry %>"></script>
  30. <% } %>
  31. </body>
  32. </html>