2021-11-01 13:58:15 +00:00
|
|
|
{% extends "base.html" %}
|
2021-11-03 12:37:18 +00:00
|
|
|
{% block meta %}
|
|
|
|
<meta name="description" content="{{ site_meta['description']|safe }}" />
|
|
|
|
<meta property="og:locale" content="{{ site_meta['locale']|safe }}" />
|
|
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta property="og:description" content="{{ site_meta['description']|safe }}" />
|
|
|
|
<meta property="og:site_name" content="{{ site_meta['name']|safe }}" />
|
|
|
|
<meta property="og:title" content="{{ page_info['title'] }} | {{ site_meta['name']|safe }}" />
|
|
|
|
<meta property="og:image" content="https://masks.vsnt.uk{{ url_for('static', filename='favicon.png') }}" />
|
|
|
|
<meta property="og:image:alt" content="Logo of the Masks Personality Quiz" />
|
|
|
|
<meta property="og:image:width" content="1024" />
|
|
|
|
<meta property="og:image:height" content="1024" />
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
<meta name="twitter:title" content="{{ page_info['title'] }} | {{ site_meta['name']|safe }}" />
|
|
|
|
<meta name="twitter:description" content="{{ site_meta['description']|safe }}" />
|
|
|
|
<meta name="twitter:image" content="https://masks.vsnt.uk{{ url_for('static', filename='favicon.png') }}" />
|
|
|
|
<meta name="twitter:image:alt" content="Logo of the Masks Personality Quiz" />
|
|
|
|
<meta name="twitter:creator" content="@viveksantayana" />
|
|
|
|
<meta name="twitter:site" content="@viveksantayana" />
|
|
|
|
<meta name="theme-color" content="#343a40" />
|
|
|
|
{% endblock %}
|
2021-11-01 13:58:15 +00:00
|
|
|
{% block content %}
|
|
|
|
<h1>Error: Page Not Found</h1>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<a href="/">Return to the Home Page</a>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|