diff options
Diffstat (limited to 'templates/ubad.html')
-rw-r--r-- | templates/ubad.html | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/templates/ubad.html b/templates/ubad.html index e15f7e8..cbe26fd 100644 --- a/templates/ubad.html +++ b/templates/ubad.html @@ -3,26 +3,31 @@ {% 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) }} + {{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/thinking.png?767b745b87" - alt="looking for your webpage" + <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> - Sorry, don't know what happened<br> - But my best men are on it + Oops! You seem to be lost<br> + Click <a href="{{SITEURL}}">here</a> to go home </p> </div> </article> |