mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-10-27 06:12:00 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en" style="height: 100%;">
 | |
|   <head>
 | |
|     <meta charset="utf-8">
 | |
|     <title>Vector</title>
 | |
|     <link href='fonts/MyriadPro.css' rel='stylesheet' type='text/css'>
 | |
|     <link rel="apple-touch-icon" sizes="57x57" href="icons/apple-touch-icon-57x57.png">
 | |
|     <link rel="apple-touch-icon" sizes="60x60" href="icons/apple-touch-icon-60x60.png">
 | |
|     <link rel="apple-touch-icon" sizes="72x72" href="icons/apple-touch-icon-72x72.png">
 | |
|     <link rel="apple-touch-icon" sizes="76x76" href="icons/apple-touch-icon-76x76.png">
 | |
|     <link rel="apple-touch-icon" sizes="114x114" href="icons/apple-touch-icon-114x114.png">
 | |
|     <link rel="apple-touch-icon" sizes="120x120" href="icons/apple-touch-icon-120x120.png">
 | |
|     <link rel="apple-touch-icon" sizes="144x144" href="icons/apple-touch-icon-144x144.png">
 | |
|     <link rel="apple-touch-icon" sizes="152x152" href="icons/apple-touch-icon-152x152.png">
 | |
|     <link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon-180x180.png">
 | |
|     <link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32">
 | |
|     <link rel="icon" type="image/png" href="icons/android-chrome-192x192.png" sizes="192x192">
 | |
|     <link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96">
 | |
|     <link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16">
 | |
|     <link rel="manifest" href="icons/manifest.json">
 | |
|     <link rel="shortcut icon" href="icons/favicon.ico">
 | |
|     <meta name="apple-mobile-web-app-title" content="Vector">
 | |
|     <meta name="application-name" content="Vector">
 | |
|     <meta name="msapplication-TileColor" content="#da532c">
 | |
|     <meta name="msapplication-TileImage" content="icons/mstile-144x144.png">
 | |
|     <meta name="msapplication-config" content="icons/browserconfig.xml">
 | |
|     <meta name="theme-color" content="#ffffff">
 | |
|   </head>
 | |
|   <body style="height: 100%;">
 | |
|     <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>
 | |
|     <section id="matrixchat" style="height: 100%;"></section>
 | |
|     <script src="bundle.js"></script>
 | |
|     <link rel="stylesheet" href="bundle.css">
 | |
|   </body>
 | |
| </html>
 |