summaryrefslogtreecommitdiff
path: root/html/processed-views/base.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-04-17 12:12:22 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-04-17 12:12:22 +0300
commit68fc9e55e538e03f94509731ab41a0c8cf96710f (patch)
tree3edb1e81864ac3eb35ba0fe8087ed24da1b812bf /html/processed-views/base.php
parent84b2da85a1b452922dadb6a609533b9945afe51d (diff)
downloadclassroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.tar.gz
classroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.tar.bz2
classroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.zip
setup a real server environment (apache DocumentRoot=/var/www/public)
Diffstat (limited to 'html/processed-views/base.php')
-rw-r--r--html/processed-views/base.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/html/processed-views/base.php b/html/processed-views/base.php
deleted file mode 100644
index 76c4966..0000000
--- a/html/processed-views/base.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8" /><?php ob_flush(); ?>
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title><?= $data['title'] ?? 'ΣΚΛΑΒΕΝΙΤΗΣ' ?></title>
-
- <!-- import fonts -->
- <?php link_asset( 'font', [
- 'iconfont', 'CFAstyStdBold', 'CFAstyStdBook', 'CFAstyStdMedium'
- ], 'rel="preload" crossorigin'
- ); ?>
-
- <!-- import css -->
- <?php link_asset('css', ['main', 'overides']); ?>
-
-</head>
-<body class="homepage" data-plugin-lazyload>
-
- <div class="mainContainer">
- <div class="mainLayer">
- </div>
-
- <?php render_view('partials/header',[]); ?>
- <?php ob_flush(); ?>
-
-
- <main class="main">
-
- <?php
- parse_sections( $page['sections'] );
- ?>
-
- </main>
- <?php ob_flush(); ?>
-
- <?php render_view('partials/footer', []); ?>
-
- </div>
-
- <!-- scripts -->
- <?php link_asset('js', [
- 'require/files', 'require/slim',
- 'plugins', 'plugins/setup'
- ]
- ); ?>
-
-</body>
-</html>
-<?php ob_flush(); ?> \ No newline at end of file