Sha256: c53f5f4a65178d9c0de5c8c0d009b67f4d4e2fbeeee559422446949de1a29a5d

Contents?: true

Size: 829 Bytes

Versions: 5

Compression:

Stored size: 829 Bytes

Contents

{% if paginator.posts %}

	<ul class="list  list--posts">
		{% for page in paginator.posts %}
			<li class="item  item--post">
				<article class="article  article--post  typeset">

					<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
					{% include post-meta.html %}
					{{ page.excerpt | markdownify | truncatewords: 60 }}

				</article>
			</li>
		{% endfor %}
	</ul>
	{% include post-pagination.html %}

{% else %}

	<ul class="list  list--posts">
		{% for page in site.posts %}
			<li class="item  item--post">
				<article class="article  article--post  typeset">

					<h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2>
					{% include post-meta.html %}
					{{ page.excerpt | markdownify | truncatewords: 60 }}

				</article>
			</li>
		{% endfor %}
	</ul>

{% endif %}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
garth-jekyll-theme-1.0.4 _includes/post-list.html
garth-jekyll-theme-1.0.3 _includes/post-list.html
garth-jekyll-theme-1.0.2 _includes/post-list.html
garth-jekyll-theme-1.0.1 _includes/post-list.html
garth-jekyll-theme-1.0.0 _includes/post-list.html