mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
69 lines
3.1 KiB
Smarty
69 lines
3.1 KiB
Smarty
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
|
|
<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 %>">
|
|
<% _.forEach(stylesheets, function(css) { %>
|
|
<link rel="stylesheet" href="packages/<%- css %>">
|
|
<% }); %>
|
|
<style id="user-specified-css"></style>
|
|
|
|
<title>The Lounge</title>
|
|
|
|
<!-- Browser tab icon -->
|
|
<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">
|
|
|
|
<!-- 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">
|
|
|
|
<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 %>">
|
|
|
|
</head>
|
|
<body class="<%- public ? " public" : "" %>" data-transports="<%- JSON.stringify(transports) %>">
|
|
<div id="app"></div>
|
|
<div id="loading">
|
|
<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">
|
|
<p id="loading-page-message">The Lounge requires a modern browser with JavaScript enabled.</p>
|
|
</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>
|
|
</div>
|
|
</div>
|
|
<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>
|
|
</body>
|
|
</html>
|