16 lines
		
	
	
		
			583 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			583 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "index.html" %}
 | 
						|
{% block title %}Erreur{% endblock %}
 | 
						|
{% block nav %}{% endblock %}
 | 
						|
{% block main %}
 | 
						|
    <article class='error'>
 | 
						|
      <h3>404 - Not found</h3>
 | 
						|
      <p>The page you asked for was not found on this server.<br/>
 | 
						|
      It may has been lost, it may has never existed.<br/>
 | 
						|
      Maybe we don't care at all...</p>
 | 
						|
      <p>
 | 
						|
        <input type='button' value='Get me back to business' onclick='javascript:document.location="/";'/>
 | 
						|
      </p>
 | 
						|
      <img src='/static/images/404.png' alt='404 - Not found' title='404 - Not found'/>
 | 
						|
    </article>
 | 
						|
{% endblock %}
 |