pve-manager/www/mobile/index.html.tpl
Thomas Lamprecht 0947b5c36f mobile ui: statically import widget toolkit
as loading the whole wtk breaks the mobile ui and is
- not always trivial to fix
- a sisyphean task (in the future)
- we don't check this often, so breakage is likely to go unnoticed

I.e., just much simple to freeze this also in time..

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2023-05-28 19:19:55 +02:00

36 lines
1.4 KiB
Smarty

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>[% nodename %] - Proxmox Virtual Environment</title>
<link rel="icon" sizes="128x128" href="/pve2/images/logo-128.png" />
<link rel="apple-touch-icon" sizes="128x128" href="/pve2/images/logo-128.png" />
<link rel="stylesheet" type="text/css" href="/pve2/sencha-touch/resources/css/sencha-touch.css" />
<link rel="stylesheet" type="text/css" href="/pve2/touch/pve.css?ver=[% version %]" />
[% IF langfile %]
<script type='text/javascript' src='/pve2/locale/pve-lang-[% lang %].js'></script>
[% ELSE %]
<script type="text/javascript">function gettext(buf) { return buf; }</script>
[% END %]
<script type="text/javascript">
Proxmox = {
Setup: { auth_cookie_name: 'PVEAuthCookie' },
UserName: '[ % username %]',
CSRFPreventionToken: '[% token %]'
};
</script>
[%- IF debug %]
<script type="text/javascript" src="/pve2/sencha-touch/sencha-touch-all-debug.js"></script>
[%- ELSE %]
<script type="text/javascript" src="/pve2/sencha-touch/sencha-touch-all.js"></script>
[% END %]
<script type="text/javascript" src="/pve2/touch/pvemanager-mobile.js?ver=[% version %]"></script>
<script type="text/javascript">
if (typeof(PVE) === 'undefined') PVE = {};
</script>
</head>
<body>
</body>
</html>