mirror of
				https://github.com/arsenetar/pelican-red.git
				synced 2025-09-11 19:58:18 +00:00 
			
		
		
		
	The templates now include microformatting from schema.org. The title and content_title blocks are no longer in most templates. This updates the progess on issue #1
		
			
				
	
	
		
			14 lines
		
	
	
		
			359 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			359 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| {% block content %}
 | |
| {% if authors %}
 | |
| <ul class="item-list" itemscope itemtype="http://schema.org/ItemList">
 | |
|   <meta itemprop="name" content="Authors"/>
 | |
|   <meta itemprop="itemListOrder" content="Unordered"/>
 | |
|   {% for author, articles  in authors %}
 | |
|   {% include '_author_item.html' %}
 | |
|   {% endfor %}
 | |
| </ul>
 | |
| {% endif %}
 | |
| {% endblock %}
 | |
| 
 |