Moves favicon into the title html.
Moves favicon into the title html with all metadata for easy overriding. Moves the title html inclusion after all the connection optimisations to avoid downloading the icon to interfere those optimisations.
This commit is contained in:
parent
ff68caaa16
commit
6cb89891ce
|
@ -3,7 +3,6 @@
|
|||
<meta charset="utf-8" />
|
||||
<meta http-equiv="content-type" content="text/html;charset=utf-8">
|
||||
<!--#include virtual="base.html" -->
|
||||
<!--#include virtual="title.html" -->
|
||||
<script>
|
||||
window.indexLoadedTime = window.performance.now();
|
||||
console.log("(TIME) index.html loaded:\t", indexLoadedTime);
|
||||
|
@ -15,7 +14,7 @@
|
|||
<script><!--#include virtual="interface_config.js" --></script>
|
||||
<script src="libs/lib-jitsi-meet.min.js?v=139"></script>
|
||||
<script src="libs/app.bundle.min.js?v=139"></script>
|
||||
<link rel="icon" type="image/png" href="/images/favicon.ico?v=1"/>
|
||||
<!--#include virtual="title.html" -->
|
||||
<link rel="stylesheet" href="css/all.css"/>
|
||||
<!--#include virtual="plugin.head.html" -->
|
||||
</head>
|
||||
|
|
|
@ -5,4 +5,5 @@
|
|||
<meta description="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
||||
<meta itemprop="name" content="Jitsi Meet"/>
|
||||
<meta itemprop="description" content="Join a WebRTC video conference powered by the Jitsi Videobridge"/>
|
||||
<meta itemprop="image" content="/images/jitsilogo.png?v=1"/>
|
||||
<meta itemprop="image" content="/images/jitsilogo.png?v=1"/>
|
||||
<link rel="icon" type="image/png" href="/images/favicon.ico?v=1"/>
|
Loading…
Reference in New Issue