blob: d032b632198babad082e7bcffb5597c8a8adeff9 (
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
31
32
33
34
35
|
{% extends 'base.html' %}
{% block css %}{{ css_asset('500_css') }}{% endblock css %}
{% block meta %}
{{super()}}
{% import 'sections/meta.html' as meta with context %}
{{meta.title('500 « ' + SITENAME)}}
{{meta.description("500 Error: Oops! ¯\_(ツ)_/¯")}}
{{meta.image(TWITTER_IMAGE, SITENAME)}}
{{meta.url(''.join((SITEURL, '/', MYBAD_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/houston-we-have-a-problem.png"
alt="something internal broke"
>
<h1>500 Error</h1>
<p>
Sorry, don't know what just happened<br>
But my best men are on it
</p>
</div>
</article>
{% include 'sections/footer.html' %}
{% endblock page %}
|