shlink/module/Core/templates/error/404.phtml

20 lines
418 B
PHTML
Raw Normal View History

2017-10-12 03:03:14 -05:00
<?php $this->layout('ShlinkCore::layout/default') ?>
<?php $this->start('title') ?>
URL Not Found
2017-10-12 03:03:14 -05:00
<?php $this->end() ?>
<?php $this->start('stylesheets') ?>
2018-11-18 13:04:12 -06:00
<style>
p {margin-bottom: 20px;}
body {text-align: center;}
</style>
2017-10-12 03:03:14 -05:00
<?php $this->end() ?>
<?php $this->start('main') ?>
2018-11-18 13:04:12 -06:00
<h1>404</h1>
<hr>
<h3>Page not found.</h3>
<p>The page you requested could not be found.</p>
2017-10-12 03:03:14 -05:00
<?php $this->end() ?>