merm compatible

This commit is contained in:
CHIEFSOFT\ameye
2025-10-05 15:46:15 -04:00
parent 03f40bb77f
commit 7dd9e23a04
7 changed files with 169 additions and 86 deletions
+29 -9
View File
@@ -15,6 +15,7 @@
left: 50%;
margin-left: -73px;
}
body {
height: 100%;
background: #fafafa;
@@ -22,6 +23,7 @@
color: #777;
font-weight: 300;
}
h1 {
font-weight: lighter;
letter-spacing: normal;
@@ -30,6 +32,7 @@
margin-bottom: 0;
color: #222;
}
.wrap {
max-width: 1024px;
margin: 5rem auto;
@@ -40,10 +43,12 @@
border-radius: 0.5rem;
position: relative;
}
pre {
white-space: normal;
margin-top: 1.5rem;
}
code {
background: #fafafa;
border: 1px solid #efefef;
@@ -51,9 +56,11 @@
border-radius: 5px;
display: block;
}
p {
margin-top: 1.5rem;
}
.footer {
margin-top: 2rem;
border-top: 1px solid #efefef;
@@ -61,24 +68,37 @@
font-size: 85%;
color: #999;
}
a:active,
a:link,
a:visited {
color: #dd4814;
}
</style>
<link rel="shortcut" href="/images/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="stylesheets/style.css"/>
</head>
<body>
<div class="wrap">
<h1>404</h1>
<div class="wrap">
<div class="logo"><a href="/"><img src="/images/logo.png" alt=""/></a></div>
<p>
<?php if (ENVIRONMENT !== 'production') : ?>
<?= nl2br(esc($message)) ?>
<?php else : ?>
<?= lang('Errors.sorryCannotFind') ?>
<?php endif; ?>
</p>
<h1>Page not found</h1>
<p>
<?php if (ENVIRONMENT !== 'production') : ?>
<?= nl2br(esc($message)) ?>
<?php else : ?>
<?= lang('Errors.sorryCannotFind') ?>
<?php endif; ?>
</p>
<p>
<div>
<span><a href="/">Home</a> |</span> <span><a href="/about-us">About us</a> |</span> <span> <a
href="/contacts">Contacts</a> </span>
<!-- <div class="clear"></div>-->
</div>
</p>
</div>
</body>
</html>