19 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			408 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "bootstrap/base.html" %}
 | 
						|
{% import "bootstrap/utils.html" as utils %}
 | 
						|
 | 
						|
{% block title %}Prolefeeder{% endblock %}
 | 
						|
{% block content %}
 | 
						|
<div class="container">
 | 
						|
 | 
						|
    <div class="row">
 | 
						|
        <div class="page-header col">
 | 
						|
            {% block page_header %}{% endblock %}
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
 | 
						|
    {{ utils.flashed_messages() }}
 | 
						|
 | 
						|
    {% block app_content %}{% endblock %}
 | 
						|
 | 
						|
</div>
 | 
						|
{% endblock %}
 |