mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-10-31 16:21:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en" style="height: 100%;">
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>Riot</title>
 | |
|     <link rel="apple-touch-icon" sizes="57x57" href="vector-icons/apple-touch-icon-57x57.png">
 | |
|     <link rel="apple-touch-icon" sizes="60x60" href="vector-icons/apple-touch-icon-60x60.png">
 | |
|     <link rel="apple-touch-icon" sizes="72x72" href="vector-icons/apple-touch-icon-72x72.png">
 | |
|     <link rel="apple-touch-icon" sizes="76x76" href="vector-icons/apple-touch-icon-76x76.png">
 | |
|     <link rel="apple-touch-icon" sizes="114x114" href="vector-icons/apple-touch-icon-114x114.png">
 | |
|     <link rel="apple-touch-icon" sizes="120x120" href="vector-icons/apple-touch-icon-120x120.png">
 | |
|     <link rel="apple-touch-icon" sizes="144x144" href="vector-icons/apple-touch-icon-144x144.png">
 | |
|     <link rel="apple-touch-icon" sizes="152x152" href="vector-icons/apple-touch-icon-152x152.png">
 | |
|     <link rel="apple-touch-icon" sizes="180x180" href="vector-icons/apple-touch-icon-180x180.png">
 | |
|     <link rel="manifest" href="vector-icons/manifest.json">
 | |
|     <link rel="shortcut icon" href="vector-icons/favicon.ico">
 | |
|     <meta name="apple-mobile-web-app-title" content="Riot">
 | |
|     <meta name="application-name" content="Riot">
 | |
|     <meta name="msapplication-TileColor" content="#da532c">
 | |
|     <meta name="msapplication-TileImage" content="vector-icons/mstile-144x144.png">
 | |
|     <meta name="msapplication-config" content="vector-icons/browserconfig.xml">
 | |
|     <meta name="theme-color" content="#ffffff">
 | |
|   </head>
 | |
|   <body style="height: 100%;">
 | |
|     <section id="matrixchat" style="height: 100%;"></section>
 | |
|     <!-- load olm, if possible. -->
 | |
|     <script src="olm.js"></script>
 | |
|     <script src="bundle.js"></script>
 | |
|     <noscript>Sorry, Riot requires JavaScript to be enabled.</noscript>
 | |
|     <link rel="stylesheet" href="bundle.css">
 | |
|     <img src="img/warning.svg" width="24" height="23" style="visibility: hidden; position: absolute; top: 0px; left: 0px;"/>
 | |
|     <audio id="messageAudio">
 | |
|         <source src="media/message.ogg" type="audio/ogg" />
 | |
|         <source src="media/message.mp3" type="audio/mpeg" />
 | |
|     </audio>
 | |
|     <audio id="ringAudio" loop>
 | |
|         <source src="media/ring.ogg" type="audio/ogg" />
 | |
|         <source src="media/ring.mp3" type="audio/mpeg" />
 | |
|     </audio>
 | |
|     <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>
 | |
|     <audio id="remoteAudio"/>
 | |
|     <script>
 | |
|         if (
 | |
|                 window.location.host === 'www.vector.im' ||
 | |
|                 window.location.host === 'vector.im' ||
 | |
|                 window.location.host === 'www.riot.im' ||
 | |
|                 window.location.host === 'riot.im'
 | |
|             ) {
 | |
|             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 | |
|             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 | |
|             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 | |
|             })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
 | |
| 
 | |
|             ga('create', 'UA-54779209-2', 'auto');
 | |
|             ga('send', 'pageview', window.location.pathname + window.location.search + window.location.hash);
 | |
|         }
 | |
|         else {
 | |
|             var ga = null;
 | |
|         }
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |