11 lines
283 B
Smarty
11 lines
283 B
Smarty
|
{% extends 'global/master.tpl' %}
|
||
|
|
||
|
{% block title %}Not found{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="main">
|
||
|
<h1 class="page-header">404 <small>Page not found</small></h1>
|
||
|
<p class="lead">The page you requested doesn't exist.</p>
|
||
|
</div>
|
||
|
{% endblock %}
|