thelounge/client/index.html.tpl

70 lines
3.1 KiB
Smarty
Raw Permalink Normal View History

2014-08-16 02:05:37 +02:00
<!doctype html>
<html lang="en">
2014-08-16 02:05:37 +02:00
<head>
<meta charset="utf-8">
2018-02-26 07:15:00 +01:00
<meta name="viewport" content="width=device-width, user-scalable=no">
2014-08-16 02:05:37 +02:00
<link rel="preload" as="script" href="js/loading-error-handlers.js?v=<%- cacheBust %>">
<link rel="preload" as="script" href="js/bundle.vendor.js?v=<%- cacheBust %>">
<link rel="preload" as="script" href="js/bundle.js?v=<%- cacheBust %>">
<link rel="stylesheet" href="css/style.css?v=<%- cacheBust %>">
<link id="theme" rel="stylesheet" href="themes/<%- theme %>.css" data-server-theme="<%- theme %>">
2018-01-05 18:40:34 +01:00
<% _.forEach(stylesheets, function(css) { %>
<link rel="stylesheet" href="packages/<%- css %>">
2018-01-05 18:40:34 +01:00
<% }); %>
<style id="user-specified-css"></style>
2014-08-16 02:05:37 +02:00
2017-04-14 20:10:17 +02:00
<title>The Lounge</title>
<!-- Browser tab icon -->
2019-03-18 11:52:12 +01:00
<link id="favicon" rel="icon" sizes="16x16 32x32 64x64" href="favicon.ico" data-other="img/favicon-alerted.ico" type="image/x-icon">
<!-- Safari pinned tab icon -->
<link rel="mask-icon" href="img/icon-black-transparent-bg.svg" color="#415364">
<link rel="manifest" href="thelounge.webmanifest">
2014-08-16 02:05:37 +02:00
<!-- iPhone 4, iPhone 4s, iPhone 5, iPhone 5c, iPhone 5s, iPhone 6, iPhone 6s, iPhone 7, iPhone 7s, iPhone8 -->
<link rel="apple-touch-icon" sizes="120x120" href="img/logo-grey-bg-120x120px.png">
<!-- iPad and iPad mini @2x -->
<link rel="apple-touch-icon" sizes="152x152" href="img/logo-grey-bg-152x152px.png">
<!-- iPad Pro -->
<link rel="apple-touch-icon" sizes="167x167" href="img/logo-grey-bg-167x167px.png">
<!-- iPhone X, iPhone 8 Plus, iPhone 7 Plus, iPhone 6s Plus, iPhone 6 Plus -->
<link rel="apple-touch-icon" sizes="180x180" href="img/logo-grey-bg-180x180px.png">
<!-- Windows 8/10 - Edge tiles -->
<meta name="application-name" content="The Lounge">
<meta name="msapplication-TileColor" content="<%- themeColor %>">
<meta name="msapplication-square70x70logo" content="img/logo-grey-bg-120x120px.png">
<meta name="msapplication-square150x150logo" content="img/logo-grey-bg-152x152px.png">
2017-04-14 20:10:17 +02:00
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="<%- themeColor %>">
2017-04-14 20:10:17 +02:00
2014-08-16 02:05:37 +02:00
</head>
2019-11-12 21:03:59 +01:00
<body class="<%- public ? " public" : "" %>" data-transports="<%- JSON.stringify(transports) %>">
<div id="app"></div>
2018-09-03 09:58:33 +02:00
<div id="loading">
2019-02-15 07:40:42 +01:00
<div class="window">
<div id="loading-status-container">
<img src="img/logo-vertical-transparent-bg.svg" class="logo" alt="" width="256" height="170">
<img src="img/logo-vertical-transparent-bg-inverted.svg" class="logo-inverted" alt="" width="256" height="170">
2019-11-05 20:29:51 +01:00
<p id="loading-page-message">The Lounge requires a modern browser with JavaScript enabled.</p>
2019-02-15 07:40:42 +01:00
</div>
<div id="loading-reload-container">
<p id="loading-slow">This is taking longer than it should, there might be connectivity issues.</p>
<button id="loading-reload" class="btn">Reload page</button>
</div>
2018-09-03 09:58:33 +02:00
</div>
2014-08-16 02:05:37 +02:00
</div>
2019-11-20 18:56:06 +01:00
<script src="js/loading-error-handlers.js?v=<%- cacheBust %>"></script>
<script src="js/bundle.vendor.js?v=<%- cacheBust %>"></script>
<script src="js/bundle.js?v=<%- cacheBust %>"></script>
2014-08-16 02:05:37 +02:00
</body>
</html>