mirror of
				https://github.com/arsenetar/pelican-red.git
				synced 2025-09-11 19:58:18 +00:00 
			
		
		
		
	Update the templates to remove the excessive itemprop tags as it really is not a good idea. Cleanup a few minor things.
		
			
				
	
	
		
			15 lines
		
	
	
		
			403 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			403 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'base.html' %}
 | |
| {% block content %}
 | |
| <h2>Recent Articles by Category</h2>
 | |
| {% for cat, articles in categories %}
 | |
| <h3><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></h3>
 | |
| <ul class="item-list">
 | |
| {% for article in articles[0:3] %}
 | |
| {% include '_list_item.html' %}
 | |
| {% endfor %}
 | |
| <p><a href="{{ SITEURL }}/{{ cat.url }}">View all articles in {{ cat }}...</a></p>
 | |
| </ul>
 | |
| {% endfor %}
 | |
| {% endblock %}
 | |
| 
 |