├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FUNDING.yml └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .htaccess ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE.txt ├── README.md ├── assets ├── css │ ├── index.php │ ├── style.css │ └── style.min.css ├── favicons │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-256x256.png │ ├── android-chrome-36x36.png │ ├── android-chrome-384x384.png │ ├── android-chrome-48x48.png │ ├── android-chrome-512x512.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── favicon_template.png │ ├── index.php │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── safari-pinned-tab.svg ├── fonts │ ├── index.php │ ├── open-sans-v17-latin-600.eot │ ├── open-sans-v17-latin-600.svg │ ├── open-sans-v17-latin-600.ttf │ ├── open-sans-v17-latin-600.woff │ ├── open-sans-v17-latin-600.woff2 │ ├── open-sans-v17-latin-800.eot │ ├── open-sans-v17-latin-800.svg │ ├── open-sans-v17-latin-800.ttf │ ├── open-sans-v17-latin-800.woff │ ├── open-sans-v17-latin-800.woff2 │ ├── open-sans-v17-latin-regular.eot │ ├── open-sans-v17-latin-regular.svg │ ├── open-sans-v17-latin-regular.ttf │ ├── open-sans-v17-latin-regular.woff │ └── open-sans-v17-latin-regular.woff2 ├── images │ ├── icon.svg │ ├── index.php │ ├── repo_image.png │ ├── sample-video-cover.jpg │ └── social_media.png ├── index.php └── js │ ├── all.min.js │ ├── all.min.js.map │ ├── base.js │ └── index.php ├── browserconfig.xml ├── cache └── index.php ├── class └── class.page.php ├── config.php ├── controller ├── index.php └── sample_directus.php ├── docker-compose.yml ├── favicon.ico ├── index.php ├── lib ├── cache_purge_rebuild.php ├── directus_connect.php ├── directus_dyn_pages.php ├── gettext │ ├── AUTHORS │ ├── COPYING │ ├── README │ ├── gettext.inc │ ├── gettext.php │ ├── index.php │ └── streams.php ├── helper_functions.php ├── index.php ├── sitemap_generator.php └── url_parsing.php ├── manifest.json ├── nginx_conf ├── 7g-firewall.conf ├── index.php └── nginx.conf ├── nginx_deployment.sh ├── package.json ├── pages ├── error.php ├── index.php ├── legal-notice_de.php ├── legal-notice_en.php ├── legal-notice_es.php ├── main_de.php ├── main_en.php ├── main_es.php ├── offline.php ├── privacy-policy_de.php ├── privacy-policy_en.php ├── privacy-policy_es.php └── sample_directus.php ├── postcss.config.js ├── redirects.php ├── robots.txt ├── routing.php ├── sample_deploy.php ├── serviceworker-cache.js ├── serviceworker-cache.min.js ├── serviceworker-cache.min.js.map ├── tailwind.config.js ├── templates ├── footer.php ├── general_meta.php ├── header.php ├── index.php └── php_security_headers.php └── translations ├── de_DE ├── LC_MESSAGES │ ├── index.php │ ├── main.mo │ └── main.po └── index.php ├── es_ES ├── LC_MESSAGES │ ├── index.php │ ├── main.mo │ └── main.po └── index.php └── index.php /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [jekuer] 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/.htaccess -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jekuer/php-microsite-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/index.php: -------------------------------------------------------------------------------- 1 |