59 lines
2.5 KiB
HTML
59 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= productName %></title>
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
<meta http-equiv="Expires" content="0">
|
|
<meta charset="utf-8">
|
|
<meta name="description" content="<%= productDescription %>">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<meta name="msapplication-tap-highlight" content="no">
|
|
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width<% if (ctx.mode.cordova || ctx.mode.capacitor) { %>, viewport-fit=cover<% } %>">
|
|
<meta name="apple-mobile-web-app-title" content="<%= productName %>">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
<link rel="apple-touch-icon" href="icons/favicon-196x196.png">
|
|
<link rel="apple-touch-startup-image" href="statics/launch.png">
|
|
<link rel="icon" type="image/png" sizes="196x196" href="icons/favicon-196x196.png">
|
|
<link rel="icon" type="image/png" sizes="128x128" href="icons/favicon-128x128.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="icons/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
|
|
<link rel="icon" type="image/ico" href="favicon.ico">
|
|
|
|
<style>
|
|
.app-loading {
|
|
display: block;
|
|
width:200px;
|
|
height:10px;
|
|
border-radius: 5px;
|
|
margin-top:40px;
|
|
background:#f3f3f3;
|
|
position:relative;
|
|
overflow: hidden;
|
|
}
|
|
.app-loading:after{
|
|
animation: qAppLoading 1s ease-in-out 0s infinite;
|
|
content:"";
|
|
height:100%;
|
|
background:#f24445;
|
|
border-radius: 5px;
|
|
display: block;
|
|
position: absolute; top:0;
|
|
}
|
|
@keyframes qAppLoading{
|
|
0%{width:0%;left:0%}
|
|
100%{width:50%; left:100%;}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- quasar:entry-point -->
|
|
<div id="appEnterLoading" style="display: flex; flex-direction: column; margin-top:160px; justify-content: space-between; align-items: center; font-size: 24px;">
|
|
<img src="icons/favicon-128x128.png" style="width:64px; height:64px; border-radius:5px; overflow:hidden;" />
|
|
<i class="app-loading"></i>
|
|
</div>
|
|
</body>
|
|
</html>
|