diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-12 07:16:23 +0200 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-03-12 07:16:23 +0200 |
| commit | 7076343338ae3439f3c86f01144818abe8c31978 (patch) | |
| tree | 794abb1e6b8f821091fd095341885496b6dad51d /html/processed-views/x-404.php | |
| parent | 47cbb529f5723b246125ae083a193e11481b89ef (diff) | |
| download | classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.gz classroom-7076343338ae3439f3c86f01144818abe8c31978.tar.bz2 classroom-7076343338ae3439f3c86f01144818abe8c31978.zip | |
add container helpers; constuct public directory-tree
Diffstat (limited to 'html/processed-views/x-404.php')
| -rw-r--r-- | html/processed-views/x-404.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/html/processed-views/x-404.php b/html/processed-views/x-404.php new file mode 100644 index 0000000..33cec4b --- /dev/null +++ b/html/processed-views/x-404.php @@ -0,0 +1,62 @@ +<?php +http_response_code(404); +ob_start(); + +?><!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>404 - HTML?></title> + + <!-- import fonts --> + <?php link_asset( 'font', [ + 'iconfont', + 'CFAstyStdBold', + 'CFAstyStdBook', + 'CFAstyStdMedium' ], 'rel="preload" crossorogin' + ) ?> + + <!-- import css --> + <?php link_asset('css', ['main']); ?> + +</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"> + + <div class="wrapper wrapper--xs"> + <div class="result result--fullheight"> + <div class="result__content"> + <span class="result__mainicon result__mainicon--border result__mainicon--orange icon-cone"></span> + <h1 class="result__title">Λυπούμαστε, η σελίδα δεν βρέθηκε.</h1> + <p class="result__p">Μπορείτε να γυρίσετε πίσω ή να μετακινηθείτε στην αρχική σελίδα.</p> + <a class="result__button button button--border" href="404.html#">Aρχική σελίδα</a> + </div> + </div> + </div> + + </main> + + <?php render_view('partials/Footer'); ?> + + </div> + + <!-- scripts --> + <?php link_asset('js', [ + 'require/files', + 'require/slim', + 'plugins', + 'plugins/setup' ] + ); ?> + +</body> +</html> +<?php ob_flush(); ?> |
