34 lines
No EOL
881 B
HTML
34 lines
No EOL
881 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{%- block title -%}{{_("Not Found")}}{%- endblock -%}
|
|
|
|
{% block page_content %}
|
|
<style>
|
|
.hero-and-content {
|
|
background-color: #f5f7fa;
|
|
}
|
|
header, footer {
|
|
display: none;
|
|
}
|
|
html, body {
|
|
background-color: #f5f7fa;
|
|
}
|
|
{% include "templates/styles/card_style.css" %}
|
|
</style>
|
|
<script>
|
|
window.is_404 = true;
|
|
</script>
|
|
<div class='page-card'>
|
|
<div class='page-card-head'>
|
|
<span class='indicator gray'>{{_("Page Missing or Moved")}}</span>
|
|
</div>
|
|
<p>{{_("The page you are looking for is missing. This could be because it is moved or there is a typo in the link.")}}</p>
|
|
<div><a href='/' class='btn btn-primary btn-sm'>{{ _("Home") }}</a></div>
|
|
</div>
|
|
<p class='text-muted text-center small' style='margin-top: -20px;'>{{ _("Error Code: {0}").format('404') }}</p>
|
|
<style>
|
|
.hero-and-content {
|
|
background-color: #f5f7fa;
|
|
}
|
|
</style>
|
|
{% endblock %} |