20 lines
		
	
	
		
			642 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			642 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends 'pageWrapper.html' %}
 | 
						|
{% import "macros.html" as macros %}
 | 
						|
 | 
						|
{% block head %}
 | 
						|
    <title>Generation in Progress</title>
 | 
						|
    <meta http-equiv="refresh" content="1">
 | 
						|
    <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/waitSeed.css") }}"/>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
    {% include 'header/oceanHeader.html' %}
 | 
						|
    <div id="wait-seed-wrapper" class="grass-island">
 | 
						|
        <div id="wait-seed">
 | 
						|
            <h1>Generation in Progress</h1>
 | 
						|
            Waiting for game to generate, this page auto-refreshes to check.
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
    {% include 'islandFooter.html' %}
 | 
						|
{% endblock %}
 |