22 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			585 B
		
	
	
	
		
			HTML
		
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
    All Posts
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="container">
 | 
						|
    <h2>All Posts</h2>
 | 
						|
    <div class="posts">
 | 
						|
        {% for post in posts %}
 | 
						|
            <div class="post">
 | 
						|
                <a href="{{ url_for('post', alias=post['alias']) }}">
 | 
						|
                    <img src="{{ url_for('static', filename='images/' + post['image']) }}" alt="{{ post['title'] }}" width="500" height="300">
 | 
						|
                    <h2>{{ post['title'] }}</h2>
 | 
						|
                </a>
 | 
						|
            </div>
 | 
						|
        {% endfor %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
{% endblock %}
 |