16 lines
		
	
	
		
			574 B
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			574 B
		
	
	
	
		
			HTML
		
	
	
	
{% extends 'pageWrapper.html' %}
 | 
						|
 | 
						|
{% block head %}
 | 
						|
    <title>Factorio</title>
 | 
						|
    <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/factorio/factorio.css") }}" />
 | 
						|
    <script type="application/ecmascript" src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
 | 
						|
    <script type="application/ecmascript" src="{{ url_for('static', filename="assets/js-yaml.min.js") }}"></script>
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block body %}
 | 
						|
    {% include 'header/grassHeader.html' %}
 | 
						|
    <div id="factorio">
 | 
						|
        Coming Soon™
 | 
						|
    </div>
 | 
						|
{% endblock %}
 |