index.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>{{ title }}</title>
  5. <meta charset="UTF-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta
  8. name="viewport"
  9. content="width=device-width, initial-scale=1, user-scalable=no"
  10. />
  11. <meta
  12. name="keywords"
  13. content="music, {{ title }}, musare, songs, song catalogue, listen, station, station, radio, open source"
  14. />
  15. <meta
  16. name="description"
  17. content="{{ title }} is an open-source collaborative music listening and catalogue curation application. Currently supporting YouTube based content."
  18. />
  19. <meta
  20. name="copyright"
  21. content="© Copyright Musare 2015-2024 All Right Reserved"
  22. />
  23. <link
  24. rel="apple-touch-icon"
  25. sizes="57x57"
  26. href="/assets/favicon/apple-touch-icon-57x57.png?v=06042016"
  27. />
  28. <link
  29. rel="apple-touch-icon"
  30. sizes="60x60"
  31. href="/assets/favicon/apple-touch-icon-60x60.png?v=06042016"
  32. />
  33. <link
  34. rel="apple-touch-icon"
  35. sizes="72x72"
  36. href="/assets/favicon/apple-touch-icon-72x72.png?v=06042016"
  37. />
  38. <link
  39. rel="apple-touch-icon"
  40. sizes="76x76"
  41. href="/assets/favicon/apple-touch-icon-76x76.png?v=06042016"
  42. />
  43. <link
  44. rel="apple-touch-icon"
  45. sizes="114x114"
  46. href="/assets/favicon/apple-touch-icon-114x114.png?v=06042016"
  47. />
  48. <link
  49. rel="apple-touch-icon"
  50. sizes="120x120"
  51. href="/assets/favicon/apple-touch-icon-120x120.png?v=06042016"
  52. />
  53. <link
  54. rel="apple-touch-icon"
  55. sizes="144x144"
  56. href="/assets/favicon/apple-touch-icon-144x144.png?v=06042016"
  57. />
  58. <link
  59. rel="apple-touch-icon"
  60. sizes="152x152"
  61. href="/assets/favicon/apple-touch-icon-152x152.png?v=06042016"
  62. />
  63. <link
  64. rel="apple-touch-icon"
  65. sizes="180x180"
  66. href="/assets/favicon/apple-touch-icon-180x180.png?v=06042016"
  67. />
  68. <link
  69. rel="icon"
  70. type="image/png"
  71. href="/assets/favicon/favicon-32x32.png?v=06042016"
  72. sizes="32x32"
  73. />
  74. <link
  75. rel="icon"
  76. type="image/png"
  77. href="/assets/favicon/favicon-194x194.png?v=06042016"
  78. sizes="194x194"
  79. />
  80. <link
  81. rel="icon"
  82. type="image/png"
  83. href="/assets/favicon/favicon-96x96.png?v=06042016"
  84. sizes="96x96"
  85. />
  86. <link
  87. rel="icon"
  88. type="image/png"
  89. href="/assets/favicon/android-chrome-192x192.png?v=06042016"
  90. sizes="192x192"
  91. />
  92. <link
  93. rel="icon"
  94. type="image/png"
  95. href="/assets/favicon/favicon-16x16.png?v=06042016"
  96. sizes="16x16"
  97. />
  98. <link rel="manifest" href="/assets/favicon/manifest.json?v=06042016" />
  99. <link
  100. rel="mask-icon"
  101. href="/assets/favicon/safari-pinned-tab.svg?v=06042016"
  102. color="#03a9f4"
  103. />
  104. <link
  105. rel="shortcut icon"
  106. href="/assets/favicon/favicon.ico?v=06042016"
  107. />
  108. <meta name="msapplication-TileColor" content="#03a9f4" />
  109. <meta
  110. name="msapplication-TileImage"
  111. content="/assets/favicon/mstile-144x144.png?v=06042016"
  112. />
  113. <meta name="theme-color" content="#03a9f4" />
  114. <meta name="google" content="nositelinkssearchbox" />
  115. <script src="https://www.youtube.com/iframe_api"></script>
  116. <!--Musare version: {{ version }}-->
  117. <!--
  118. Git info
  119. Remote: {{ gitRemote }}
  120. Remote URL: {{ gitRemoteUrl }}
  121. Branch: {{ gitBranch }}
  122. Latest commit: {{ gitLatestCommit }}
  123. Latest commit short: {{ gitLatestCommitShort }}
  124. -->
  125. </head>
  126. <body>
  127. <div id="root"></div>
  128. <div id="toasts-container" class="position-right position-bottom">
  129. <div id="toasts-content"></div>
  130. </div>
  131. <script type="module" src="/main.ts"></script>
  132. </body>
  133. </html>