aboutsummaryrefslogtreecommitdiffstats
path: root/templates/ubad.html
blob: cbe26fd0683a2b9fce5653889282f6c1cb00459a (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('404_css') }}{% endblock css %}

{% block meta %}
  {{super()}}
  {% import 'sections/meta.html' as meta with context %}
  {{ meta.title('404 « ' + SITENAME) }}

  {{ meta.description('404 Error: Oops! You seem to be lost') }}

  {{ 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/lost-again.png"
	 alt="the webpage you're looking for wasn't found"
	 >
    <h1>404 Error</h1>
    <p>
      Oops! You seem to be lost<br>
      Click <a href="{{SITEURL}}">here</a> to go home
    </p>
  </div>
</article>
{% include 'sections/footer.html' %}
{% endblock page %}