blob: 58e538f1a019376290956c75b1ab4f9f3c375417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{layout '@layout.latte'}
{var $robots = false}
{block title}Page not found{/block}
{block content}
<div id="content">
<h1>{include title}</h1>
<p>The requested page could not be found.</p>
<p>You have probably clicked on a link that is outdated and points to a page that does not exist any more or you have made an typing error in the address.</p>
<p>To continue please try to find requested page in the menu,{if $config->tree} take a look at <a href="tree.html">the tree view</a> of the whole project{/if} or use search field on the top.</p>
</div>
{/block}
|