From 7aac45c2ff3634ea31cf9b1a97889065edf650f7 Mon Sep 17 00:00:00 2001 From: Alexis Puente Montiel Date: Thu, 17 Feb 2022 22:17:14 +0100 Subject: Quanta: Add dtep to support HTML5 mode. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Puente Montiel Minor fixes. Signed-off-by: Slávek Banko (cherry picked from commit 3b06901a66232c9de174fae3c09bdad401b234c2) --- quanta/data/templates/pages/CMakeLists.txt | 1 + quanta/data/templates/pages/Makefile.am | 2 +- quanta/data/templates/pages/html5/CMakeLists.txt | 14 ++++++++++++++ quanta/data/templates/pages/html5/Makefile.am | 2 ++ quanta/data/templates/pages/html5/base.html | 9 +++++++++ 5 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 quanta/data/templates/pages/html5/CMakeLists.txt create mode 100644 quanta/data/templates/pages/html5/Makefile.am create mode 100644 quanta/data/templates/pages/html5/base.html (limited to 'quanta/data/templates/pages') diff --git a/quanta/data/templates/pages/CMakeLists.txt b/quanta/data/templates/pages/CMakeLists.txt index 965a9475..9aca96f7 100644 --- a/quanta/data/templates/pages/CMakeLists.txt +++ b/quanta/data/templates/pages/CMakeLists.txt @@ -11,6 +11,7 @@ add_subdirectory( php ) add_subdirectory( html ) +add_subdirectory( html5 ) add_subdirectory( docbook ) install( FILES dirinfo diff --git a/quanta/data/templates/pages/Makefile.am b/quanta/data/templates/pages/Makefile.am index 6eaaa6a8..f7b47129 100644 --- a/quanta/data/templates/pages/Makefile.am +++ b/quanta/data/templates/pages/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = php html docbook +SUBDIRS = php html html5 docbook templatespagesdir = ${quanta_datadir}/templates/pages templatespages_DATA = dirinfo diff --git a/quanta/data/templates/pages/html5/CMakeLists.txt b/quanta/data/templates/pages/html5/CMakeLists.txt new file mode 100644 index 00000000..0bddf292 --- /dev/null +++ b/quanta/data/templates/pages/html5/CMakeLists.txt @@ -0,0 +1,14 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES + base.html + DESTINATION ${DATA_INSTALL_DIR}/quanta/templates/pages/html5 ) diff --git a/quanta/data/templates/pages/html5/Makefile.am b/quanta/data/templates/pages/html5/Makefile.am new file mode 100644 index 00000000..21dded22 --- /dev/null +++ b/quanta/data/templates/pages/html5/Makefile.am @@ -0,0 +1,2 @@ +templatespageshtml401dir = ${quanta_datadir}/templates/pages/html5 +templatespageshtml401_DATA = base.html diff --git a/quanta/data/templates/pages/html5/base.html b/quanta/data/templates/pages/html5/base.html new file mode 100644 index 00000000..d2974677 --- /dev/null +++ b/quanta/data/templates/pages/html5/base.html @@ -0,0 +1,9 @@ + + + + + + + + + -- cgit v1.2.1