mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-24 20:20:13 +00:00

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>
36 lines
1.4 KiB
Smarty
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>
|