blob: 33cec4b542ad1d6b9f024c467da8c2c730ed4483 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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(); ?>
|