Files
LiveCartaWP/htdocs/wp-content/themes/lawcarta/404.php
2023-08-21 16:27:12 +02:00

27 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php get_header();?>
<div class="content">
<div class="cont">
<div class="p404">
<div class="inner-cont width-large white">
<div class="p404-img">
<img src="<?= get_theme_file_uri('/assets/img/404.svg'); ?>" alt="404">
</div>
<h1><b>We cant find the page you are looking for</b></h1>
<p>Sorry, looks like the page with this URL does not exist. Here are some other options:</p>
<ul>
<li>View your materials in <a href="<?= get_lawcarta_url()?>/library">My Library</a></li>
<li>Browse our digital <a href="<?= get_lawcarta_url()?>/catalog">Catalog</a></li>
<li>Find answers in the <a href="/faq-page">FAQ articles</a></li>
</ul>
<div class="bot-link">
<a href="/" class="button link">Back to Home page</a>
</div>
</div>
</div>
</div>
</div>
<?php get_footer();