You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
			
		
		
	
	
			30 lines
		
	
	
		
			743 B
		
	
	
	
		
			HTML
		
	
| ---
 | |
| layout: default
 | |
| ---
 | |
| 
 | |
| <div class="blog-index">
 | |
|   {% assign index = true %}
 | |
|   {% for post in paginator.posts %}
 | |
|   {% assign content = post.content %}
 | |
|     <article>
 | |
|       {% include article.html %}
 | |
|     </article>
 | |
|   {% endfor %}
 | |
|   <div class="pagination">
 | |
|     {% if paginator.next_page %}
 | |
|       <a class="prev" href="{{paginator.next_page}}">← Older</a>
 | |
|     {% endif %}
 | |
|     <a href="/blog/archives">Blog Archives</a>
 | |
|     {% if paginator.previous_page %}
 | |
|     <a class="next" href="{{paginator.previous_page}}">Newer →</a>
 | |
|     {% endif %}
 | |
|   </div>
 | |
| </div>
 | |
| <aside class="sidebar">
 | |
|   {% if site.blog_index_asides.size %}
 | |
|     {% include_array blog_index_asides %}
 | |
|   {% else %}
 | |
|     {% include_array default_asides %}
 | |
|   {% endif %}
 | |
| </aside>
 |