Sha256: 2e9a6a12b7fe27e7238fec67bc08289d53e9c98e44f48f43cf402d108fdbaa43
Contents?: true
Size: 1.43 KB
Versions: 1
Compression:
Stored size: 1.43 KB
Contents
<div class="posts"> {% for post in paginator.posts %} <div class="post-teaser"> {% if post.thumbnail %} <div class="post-img"> <img alt="{{ post.title }}" src="{{ site.baseurl }}/{{ post.thumbnail }}"> </div> {% endif %} <span> <header> <h1> <a alt="{{ post.title }}" class="post-link" href="{{ post.url | prepend: site.baseurl }}"> {{ post.title }} </a> </h1> <p class="meta"> {{ post.date | date: "%B %-d, %Y" }} </p> </header> <div class="excerpt"> {{ post.excerpt | strip_html | escape }} </div> </span> </div> {% endfor %} </div> {% if paginator.total_pages > 1 %} <div class="pagination"> {% if paginator.previous_page %} <a alt="{{ site.theme_settings.str_previous_page }}" href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button"> <i class="fa fa-chevron-left"></i> {{ site.theme_settings.str_previous_page }} </a> {% endif %} {% if paginator.next_page %} <a alt="{{ site.theme_settings.str_next_page }}" href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="button"> {{ site.theme_settings.str_next_page }} <i class="fa fa-chevron-right"></i> </a> {% endif %} </div> {% endif %}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
type-on-strap-0.6.3 | _includes/blog.html |