commit da2680359e5dc6508a6e4cf3fde8e3074848ff95 Author: Netkas Date: Sun Nov 7 12:58:26 2021 -0500 Initial Commit 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