24 lines
		
	
	
	
		
			559 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			24 lines
		
	
	
	
		
			559 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								<!DOCTYPE html>
							 | 
						||
| 
								 | 
							
								<html>
							 | 
						||
| 
								 | 
							
								    <head>
							 | 
						||
| 
								 | 
							
								      <title>Prolefeeder</title>
							 | 
						||
| 
								 | 
							
								    </head>
							 | 
						||
| 
								 | 
							
								    <body>
							 | 
						||
| 
								 | 
							
								        <div>
							 | 
						||
| 
								 | 
							
								            <a href="{{ url_for('index') }}">Home</a>
							 | 
						||
| 
								 | 
							
								            <a href="{{ url_for('download') }}">Download</a>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <hr>
							 | 
						||
| 
								 | 
							
								        {% with messages = get_flashed_messages() %}
							 | 
						||
| 
								 | 
							
								        {% if messages %}
							 | 
						||
| 
								 | 
							
								        <ul>
							 | 
						||
| 
								 | 
							
								            {% for message in messages %}
							 | 
						||
| 
								 | 
							
								            <li>{{ message }}</li>
							 | 
						||
| 
								 | 
							
								            {% endfor %}
							 | 
						||
| 
								 | 
							
								        </ul>
							 | 
						||
| 
								 | 
							
								        {% endif %}
							 | 
						||
| 
								 | 
							
								        {% endwith %}
							 | 
						||
| 
								 | 
							
								        {% block content %}{% endblock %}
							 | 
						||
| 
								 | 
							
								    </body>
							 | 
						||
| 
								 | 
							
								</html>
							 |