mirror of
				https://github.com/arsenetar/pelican-red.git
				synced 2025-09-11 19:58:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			327 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			327 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| {% block title %}{{ super() }} - {{article.title|title}} {% endblock %}  
 | |
| {% block content %}
 | |
|   <article>
 | |
|     <header><h1>{{ article.title|title }}</h1></header>
 | |
|     {{ article.content }}
 | |
|     <footer>{{ article.author }}</footer>
 | |
|     </article>
 | |
|     {% include '_article_footer.html' %}
 | |
| {% endblock %}
 |