mirror of https://github.com/istio/istio.io.git
				
				
				
			
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
---
 | 
						|
title: Blog
 | 
						|
overview: The Istio blog.
 | 
						|
layout: blog
 | 
						|
---
 | 
						|
# The Istio Blog
 | 
						|
 | 
						|
{% for post in paginator.posts %}
 | 
						|
	<a href="{{home}}{{ post.url }}"><h4 id="{{post.id}}" class="post-title">{{ post.title }}</h4></a>
 | 
						|
 | 
						|
	<div class="post-date">
 | 
						|
		{{ post.date | date: '%B %d, %Y' }}
 | 
						|
	</div>
 | 
						|
 | 
						|
	<div class="post-author-company">
 | 
						|
		{% if post.author %}
 | 
						|
		<div class="post-author">
 | 
						|
			{{ post.author}}
 | 
						|
		</div>
 | 
						|
		{% endif %}
 | 
						|
	</div>
 | 
						|
 | 
						|
	<div class="post-excerpt">
 | 
						|
		{{ post.excerpt }}
 | 
						|
	</div>
 | 
						|
 | 
						|
	<div class="read-more">
 | 
						|
		<a href="{{home}}{{ post.url }}"><span class="read-more-text">Read More</span></a>
 | 
						|
	</div>
 | 
						|
	<hr>
 | 
						|
{% endfor %}
 | 
						|
 | 
						|
<div class="pagination">
 | 
						|
  {% if paginator.previous_page %}
 | 
						|
	<div class="previous col-xs-6">
 | 
						|
		<a href="{{home}}{{ paginator.previous_page_path }}"><span class="caret-left"></span>Newer</a>
 | 
						|
	</div>
 | 
						|
  {% else %}
 | 
						|
	<span class="col-xs-6"></span>
 | 
						|
  {% endif %}
 | 
						|
  {% if paginator.next_page %}
 | 
						|
	<div class="next col-xs-6 text-right">
 | 
						|
		<a href="{{home}}{{ paginator.next_page_path }}" >Older<span class="caret-right"></span></a>
 | 
						|
	</div>
 | 
						|
  {% else %}
 | 
						|
	<span class="col-xs-6"></span>
 | 
						|
  {% endif %}
 | 
						|
</div>
 |