 515161cdbc
			
		
	
	
	515161cdbc
	
	
	
		
			
			- Make colors simpler and avoid poping color background. Adding more unity to the design and better consistency in color use. This simplifies the CSS rules - "begin" and "end" links are always visible. If they make no sense, it's a dummy link that isn't a <a> element - Manipulate visibility of the <nav> element for the stack menu instead of the <menu>. It's more consistent like that. Change logic accordingly.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			294 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| 
 | |
| {% block content %}
 | |
| {% block title%}
 | |
| <h1>Tous les articles</h1>
 | |
| {% endblock %}
 | |
| <!-- A wrapper for all the blog posts -->
 | |
| {% for article in articles_page.object_list %}
 | |
| {% include 'post.html' %}
 | |
| <hr>
 | |
| {% endfor %}
 | |
| {% include 'pagination.html' %}
 | |
| {% endblock content %}
 |