From da2680359e5dc6508a6e4cf3fde8e3074848ff95 Mon Sep 17 00:00:00 2001 From: Netkas Date: Sun, 7 Nov 2021 12:58:26 -0500 Subject: [PATCH] Initial Commit --- .gitignore | 1 + .ppm_package | 1 + Makefile | 15 ++++++++ frontend/.htaccess | 3 ++ frontend/index.php | 6 +++ src/assets/css/starter-template.css | 31 +++++++++++++++ src/configuration.json | 38 ++++++++++++++++++ src/localization/en.json | 28 ++++++++++++++ src/package.json | 49 +++++++++++++++++++++++ src/pages/index/contents.dyn | 60 +++++++++++++++++++++++++++++ src/sections/footer.dyn | 3 ++ src/sections/header.dyn | 5 +++ 12 files changed, 240 insertions(+) create mode 100644 .gitignore create mode 100644 .ppm_package create mode 100644 Makefile create mode 100644 frontend/.htaccess create mode 100644 frontend/index.php create mode 100644 src/assets/css/starter-template.css create mode 100644 src/configuration.json create mode 100644 src/localization/en.json create mode 100644 src/package.json create mode 100644 src/pages/index/contents.dyn create mode 100644 src/sections/footer.dyn create mode 100644 src/sections/header.dyn diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/.ppm_package b/.ppm_package new file mode 100644 index 0000000..85de9cf --- /dev/null +++ b/.ppm_package @@ -0,0 +1 @@ +src diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..877249d --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +clean: + rm -rf build + +build: + mkdir build + ppm --no-intro --compile="src" --directory="build" + +update: + ppm --generate-package="src" + +install: + ppm --no-intro --no-prompt --fix-conflict --install="build/net.intellivoid.example_web_application.ppm" + +install_fast: + ppm --no-intro --no-prompt --fix-conflict --skip-dependencies --install="build/net.intellivoid.example_web_application.ppm" diff --git a/frontend/.htaccess b/frontend/.htaccess new file mode 100644 index 0000000..e27b817 --- /dev/null +++ b/frontend/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine On +RewriteCond %{REQUEST_FILENAME} !-f +RewriteRule . index.php [L] \ No newline at end of file diff --git a/frontend/index.php b/frontend/index.php new file mode 100644 index 0000000..30e219f --- /dev/null +++ b/frontend/index.php @@ -0,0 +1,6 @@ + + + + + + + + DynamicalWeb Example Application + + + +
+
+ + Bootstrap + Starter template + +
+ +
+

Get started with Bootstrap

+

Quickly and easily get started with Bootstrap's compiled, production-ready files with this barebones example featuring some basic HTML and helpful links. Download all our examples to get started.

+ + + +
+ +
+
+

Starter projects

+

Ready to beyond the starter template? Check out these open source projects that you can quickly duplicate to a new GitHub repository.

+ +
+ +
+

Guides

+

Read more detailed instructions and documentation on using or contributing to Bootstrap.

+ +
+
+
+ +
+ + + + diff --git a/src/sections/footer.dyn b/src/sections/footer.dyn new file mode 100644 index 0000000..1e5eca2 --- /dev/null +++ b/src/sections/footer.dyn @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/src/sections/header.dyn b/src/sections/header.dyn new file mode 100644 index 0000000..2758a67 --- /dev/null +++ b/src/sections/header.dyn @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file