- config didn't work now it's working properly - it takes config from envirionment variable FLASK_CONFIG - if no such variable exists it uses Development config as default
		
			
				
	
	
		
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			246 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
	<head>
 | 
						|
		<title>App</title>
 | 
						|
	</head>
 | 
						|
	<body>
 | 
						|
		<div class="container">
 | 
						|
			{% include "includes/header.html" %}
 | 
						|
			{% block content %}{% endblock content %}
 | 
						|
			{% include "includes/footer.html" %}
 | 
						|
		</div>
 | 
						|
	</body>
 | 
						|
</html>
 |