28 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
{% 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 %}
 | 
						|
{% block content %}
 | 
						|
<h1>Error: Page Not Found</h1>
 | 
						|
 | 
						|
<div class="container">
 | 
						|
    <a href="/">Return to the Home Page</a>
 | 
						|
</div>
 | 
						|
{% endblock %} |