Show different 404 text for logged in users

master
Sven Slootweg 11 years ago
parent 033335b5e7
commit c8245bdcfe

@ -1,5 +1,6 @@
<h2>Page not found.</h2>
{%if logged-in == false}
<p>
<strong>Sorry, we could not find the page you requested.</strong> But while you're here anyway, why not introduce ourselves?
</p>
@ -13,3 +14,12 @@
<p>
Gotten curious? <a href="/">Visit our homepage to learn more...</a>
</p>
{%else}
<p>
<strong>Sorry, we could not find the page you requested.</strong>
</p>
<p>
Maybe you wanted to go to your <a href="/dashboard">Dashboard</a>?
</p>
{%/if}

Loading…
Cancel
Save