16 lines
		
	
	
		
			283 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			283 B
		
	
	
	
		
			HTML
		
	
	
		
			Executable File
		
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% block title %}{{ SITENAME }} - Archives{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h1>Newsletters passées</h1>
 | 
						|
 | 
						|
<ul>
 | 
						|
 | 
						|
 | 
						|
{% for article in dates %}
 | 
						|
    <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></li>
 | 
						|
{% endfor %}
 | 
						|
{% endblock %}
 | 
						|
</ul>
 |