summaryrefslogtreecommitdiff
path: root/html/app/views/basic.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-30 05:03:23 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-03-30 05:03:23 +0300
commit4f2d900af7636e6744ae14aeeefdf2d6080ac50a (patch)
tree1f80775437510591656e6ef13375516226ed27f3 /html/app/views/basic.php
parenta16d070c4f8301a8b68220aca6d3573705be9025 (diff)
downloadclassroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.tar.gz
classroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.tar.bz2
classroom-4f2d900af7636e6744ae14aeeefdf2d6080ac50a.zip
several mail options tested; mailhog (fake) mailer is working
Diffstat (limited to 'html/app/views/basic.php')
-rw-r--r--html/app/views/basic.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/html/app/views/basic.php b/html/app/views/basic.php
deleted file mode 100644
index 39bdf00..0000000
--- a/html/app/views/basic.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php ob_start(); ?><!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>ΣΚΛΑΒΕΝΙΤΗΣ - <?=$page['title']?></title>
-
- <!-- import assets -->
-
- <link rel="preconnect" href="https://fonts.googleapis.com">
- <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
- <link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;700&display=swap" rel="stylesheet">
-
- <!-- TODO: parse seo data -->
-
-
-</head>
-<body class="homepage" data-plugin-lazyload>
-
- <div class="mainContainer">
-
- <div class="mainLayer"></div>
-
-
- <!-- header -->
- < ?php cache_view('partials/header', []); ? >
- <?php ob_flush(); ?>
-
-
- <!-- main content -->
- <main class="main">
-
- <?php parse_sections( $page['sections'] ); ?>
-
- </main>
- <?php ob_flush(); ?>
-
-
- <!-- footer -->
- < ?php cache_view('partials/footer', [], true) ? >
-
- </div>
-
- <!-- scripts -->
- <?php link_asset('js',
- ['require.files', 'require.slim', 'plugins.min', 'plugins.setup' ]
- ); ?>
-
-</body>
-</html><?php ob_flush(); ?>