From 33d035720818f8229d7b4b9d6aec33b667d5deb3 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 28 May 2023 18:36:03 +0200 Subject: [PATCH] www: merge remaining touch files into mobile only the index and (empty) css files left-over, so just merge this to where it belongs Signed-off-by: Thomas Lamprecht --- www/Makefile | 2 +- www/mobile/Makefile | 4 +++- www/mobile/index.html.tpl | 32 ++++++++++++++++++++++++++++++++ www/mobile/pve.css | 1 + 4 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 www/mobile/index.html.tpl create mode 100644 www/mobile/pve.css diff --git a/www/Makefile b/www/Makefile index 84abd027..8c12453d 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,5 +1,5 @@ include ../defines.mk -SUBDIRS = images css manager6 touch mobile +SUBDIRS = images css manager6 mobile all: diff --git a/www/mobile/Makefile b/www/mobile/Makefile index 139fed50..ce1c790a 100644 --- a/www/mobile/Makefile +++ b/www/mobile/Makefile @@ -32,8 +32,10 @@ pvemanager-mobile.js: ${JSSRC} mv $@.tmp $@ .PHONY: install -install: pvemanager-mobile.js +install: pvemanager-mobile.js index.html.tpl pve.css install -d ${WWWTOUCHDIR} + install -m 0644 index.html.tpl ${WWWTOUCHDIR} + install -m 0644 pve.css ${WWWTOUCHDIR} install -m 0644 pvemanager-mobile.js ${WWWTOUCHDIR} .PHONY: clean diff --git a/www/mobile/index.html.tpl b/www/mobile/index.html.tpl new file mode 100644 index 00000000..720d0590 --- /dev/null +++ b/www/mobile/index.html.tpl @@ -0,0 +1,32 @@ + + + + + [% nodename %] - Proxmox Virtual Environment + + + + + + [% IF langfile %] + + [% ELSE %] + + [% END %] + + + + + + + + + diff --git a/www/mobile/pve.css b/www/mobile/pve.css new file mode 100644 index 00000000..a62bd9f8 --- /dev/null +++ b/www/mobile/pve.css @@ -0,0 +1 @@ +/* currently empty */ \ No newline at end of file