diff options
Diffstat (limited to 'quanta/data/templates/pages/html5')
-rw-r--r-- | quanta/data/templates/pages/html5/CMakeLists.txt | 14 | ||||
-rw-r--r-- | quanta/data/templates/pages/html5/Makefile.am | 2 | ||||
-rw-r--r-- | quanta/data/templates/pages/html5/base.html | 9 |
3 files changed, 25 insertions, 0 deletions
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 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <title></title> +</head> +<body> +</body> +</html> |