mirror of https://github.com/istio/istio.io.git
59 lines
1.3 KiB
HTML
59 lines
1.3 KiB
HTML
---
|
|
title: Blog
|
|
overview: The Istio blog.
|
|
layout: 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>
|
|
|
|
{% if post.thumbnail %}
|
|
<div class="post-thumbnail" style="background-image: url({{post.thumbnail}})">
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="post-author-company">
|
|
{% if post.author %}
|
|
<div class="post-author">
|
|
{{ post.author}}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% if post.company %}
|
|
<div class="post-company">
|
|
<a href={{post.company-link}} target="_blank">
|
|
{{ post.company}}
|
|
</a>
|
|
</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>
|