2015-06-09 12:40:42 -04:00
|
|
|
<!doctype html>
|
2015-07-22 03:17:15 -04:00
|
|
|
<html lang="en" style="height: 100%;">
|
2015-06-09 12:40:42 -04:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2016-09-19 09:50:17 -04:00
|
|
|
<title>Riot</title>
|
2019-02-15 10:11:33 -05:00
|
|
|
<link rel="apple-touch-icon" sizes="57x57" href="<%= require('../../res/vector-icons/apple-touch-icon-57x57.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="60x60" href="<%= require('../../res/vector-icons/apple-touch-icon-60x60.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="72x72" href="<%= require('../../res/vector-icons/apple-touch-icon-72x72.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="76x76" href="<%= require('../../res/vector-icons/apple-touch-icon-76x76.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="114x114" href="<%= require('../../res/vector-icons/apple-touch-icon-114x114.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="120x120" href="<%= require('../../res/vector-icons/apple-touch-icon-120x120.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="144x144" href="<%= require('../../res/vector-icons/apple-touch-icon-144x144.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="152x152" href="<%= require('../../res/vector-icons/apple-touch-icon-152x152.png') %>">
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="<%= require('../../res/vector-icons/apple-touch-icon-180x180.png') %>">
|
2017-05-11 08:12:26 -04:00
|
|
|
<link rel="manifest" href="manifest.json">
|
2018-02-15 07:31:31 -05:00
|
|
|
<meta name="referrer" content="no-referrer">
|
2019-02-15 10:11:33 -05:00
|
|
|
<link rel="shortcut icon" href="<%= require('../../res/vector-icons/favicon.ico') %>">
|
2016-09-23 09:24:47 -04:00
|
|
|
<meta name="apple-mobile-web-app-title" content="Riot">
|
2016-09-27 07:27:06 -04:00
|
|
|
<meta name="application-name" content="Riot">
|
2015-07-27 20:04:23 -04:00
|
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
2019-02-15 10:11:33 -05:00
|
|
|
<meta name="msapplication-TileImage" content="<%= require('../../res/vector-icons/mstile-144x144.png') %>">
|
|
|
|
<meta name="msapplication-config" content="<%= require('../../res/vector-icons/browserconfig.xml') %>">
|
2015-07-27 20:04:23 -04:00
|
|
|
<meta name="theme-color" content="#ffffff">
|
2018-03-14 14:34:26 -04:00
|
|
|
<meta property="og:image" content="<%= htmlWebpackPlugin.options.vars.og_image_url %>" />
|
2020-02-06 06:52:21 -05:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="
|
|
|
|
default-src 'none';
|
|
|
|
style-src 'self' 'unsafe-inline';
|
|
|
|
script-src 'self' 'unsafe-eval' https://www.recaptcha.net https://www.gstatic.com;
|
|
|
|
img-src * blob: data:;
|
|
|
|
connect-src *;
|
|
|
|
font-src 'self' data:;
|
|
|
|
media-src * blob: data:;
|
|
|
|
child-src * blob: data:;
|
|
|
|
worker-src 'self';
|
|
|
|
frame-src * blob: data:;
|
|
|
|
form-action 'self';
|
|
|
|
object-src 'self';
|
|
|
|
manifest-src 'self';
|
|
|
|
">
|
2017-01-17 14:14:16 -05:00
|
|
|
<% for (var i=0; i < htmlWebpackPlugin.files.css.length; i++) {
|
|
|
|
var file = htmlWebpackPlugin.files.css[i];
|
2017-01-19 10:40:54 -05:00
|
|
|
var match = file.match(/^bundles\/.*?\/theme-(.*)\.css$/);
|
2017-01-18 09:06:20 -05:00
|
|
|
if (match) {
|
|
|
|
var title = match[1].charAt(0).toUpperCase() + match[1].slice(1);
|
2017-01-17 14:14:16 -05:00
|
|
|
%>
|
2017-11-14 19:57:44 -05:00
|
|
|
<link rel="stylesheet" disabled="disabled" title="<%= title %>" href="<%= file %>">
|
2017-01-17 14:14:16 -05:00
|
|
|
<% } else { %>
|
|
|
|
<link rel="stylesheet" href="<%= file %>">
|
|
|
|
<% }
|
|
|
|
} %>
|
2015-06-09 12:40:42 -04:00
|
|
|
</head>
|
2020-04-23 10:38:26 -04:00
|
|
|
<body style="height: 100%; margin: 0;" data-vector-indexeddb-worker-script="<%= htmlWebpackPlugin.files.chunks['indexeddb-worker'].entry %>">
|
2017-05-31 10:06:03 -04:00
|
|
|
<noscript>Sorry, Riot requires JavaScript to be enabled.</noscript> <!-- TODO: Translate this? -->
|
2020-02-22 14:06:10 -05:00
|
|
|
<section id="matrixchat" style="height: 100%; overflow: auto;"></section>
|
2018-12-19 17:05:04 -05:00
|
|
|
<script src="<%= htmlWebpackPlugin.files.chunks['bundle'].entry %>"></script>
|
2019-01-17 21:59:06 -05:00
|
|
|
<img src="<%= require('matrix-react-sdk/res/img/warning.svg') %>" width="24" height="23" style="visibility: hidden; position: absolute; top: 0px; left: 0px;"/>
|
2019-06-27 15:59:11 -04:00
|
|
|
<img src="<%= require('matrix-react-sdk/res/img/e2e/warning.svg') %>" width="24" height="23" style="visibility: hidden; position: absolute; top: 0px; left: 0px;"/>
|
2019-11-20 06:42:31 -05:00
|
|
|
<img src="<%= require('matrix-react-sdk/res/img/feather-customised/warning-triangle.svg') %>" width="24" height="23" style="visibility: hidden; position: absolute; top: 0px; left: 0px;"/>
|
2016-03-03 08:11:46 -05:00
|
|
|
<audio id="messageAudio">
|
|
|
|
<source src="media/message.ogg" type="audio/ogg" />
|
|
|
|
<source src="media/message.mp3" type="audio/mpeg" />
|
|
|
|
</audio>
|
2015-12-16 21:53:53 -05:00
|
|
|
<audio id="ringAudio" loop>
|
|
|
|
<source src="media/ring.ogg" type="audio/ogg" />
|
|
|
|
<source src="media/ring.mp3" type="audio/mpeg" />
|
|
|
|
</audio>
|
2015-07-17 11:42:16 -04:00
|
|
|
<audio id="ringbackAudio" loop>
|
|
|
|
<source src="media/ringback.ogg" type="audio/ogg" />
|
|
|
|
<source src="media/ringback.mp3" type="audio/mpeg" />
|
|
|
|
</audio>
|
|
|
|
<audio id="callendAudio">
|
|
|
|
<source src="media/callend.ogg" type="audio/ogg" />
|
|
|
|
<source src="media/callend.mp3" type="audio/mpeg" />
|
|
|
|
</audio>
|
|
|
|
<audio id="busyAudio">
|
|
|
|
<source src="media/busy.ogg" type="audio/ogg" />
|
|
|
|
<source src="media/busy.mp3" type="audio/mpeg" />
|
|
|
|
</audio>
|
2018-02-23 11:27:34 -05:00
|
|
|
<audio id="remoteAudio"></audio>
|
2017-11-04 19:43:34 -04:00
|
|
|
<!-- let CSS themes pass constants to the app -->
|
2018-10-04 05:49:28 -04:00
|
|
|
<div id="mx_theme_accentColor"></div><div id="mx_theme_secondaryAccentColor"></div><div id="mx_theme_tertiaryAccentColor"></div>
|
2015-06-09 12:40:42 -04:00
|
|
|
</body>
|
|
|
|
</html>
|