blob: e15f7e8b88556fa4809219ad5e9b1196993e5f77 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{% extends 'base.html' %}
{% block css %}{{ css_asset('404_css') }}{% endblock css %}
{% block meta %}
{% import 'sections/meta.html' as meta with context %}
{{ meta.title('404 « ' + SITENAME) }}
{{ meta.description('404 Error: Sorry dont know what happened, But my best men are on it') }}
{{ meta.image(TWITTER_IMAGE, SITENAME) }}
{{ meta.url(''.join((SITEURL, '/', UBAD_URL))) }}
{{ meta.og_site_name(SITENAME) }}
{{ meta.twitter_card('summary') }}
{{ meta.twitter_site(TWITTER_HANDLE) }}
{% endblock meta %}
{% block page %}
<article>
<div>
<img src="{{SITEURL}}/{{THEME_STATIC_DIR}}/img/thinking.png?767b745b87"
alt="looking for your webpage"
>
<h1>404 Error</h1>
<p>
Sorry, don't know what happened<br>
But my best men are on it
</p>
</div>
</article>
{% include 'sections/footer.html' %}
{% endblock page %}
|