Sha256: 0fecdc73f160f41728db095957e1a0ab6116b85f647a2bd3b3335396df1e38fc

Contents?: true

Size: 879 Bytes

Versions: 21

Compression:

Stored size: 879 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="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2>
					{% include post-meta.html %}
					{{ page.excerpt | markdownify | truncatewords: 60 }}

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

{% else %}
	<h2>Latest blog posts</h2>
	<ul class="list  list--posts">
		{% for page in site.posts limit: 4 %}
			<li class="item  item--post">
				<article class="article  article--post  typeset">

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

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

{% endif %}

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
alembic-jekyll-theme-1.2.0 _includes/post-list.html
alembic-jekyll-theme-1.1.1 _includes/post-list.html
alembic-jekyll-theme-1.1.0 _includes/post-list.html
alembic-jekyll-theme-1.0.0 _includes/post-list.html
alembic-jekyll-theme-0.1.7 _includes/post-list.html
alembic-jekyll-theme-0.1.6 _includes/post-list.html
alembic-jekyll-theme-0.1.5 _includes/post-list.html
alembic-jekyll-theme-0.1.4 _includes/post-list.html
alembic-jekyll-theme-0.1.3 _includes/post-list.html
alembic-jekyll-theme-0.1.2 _includes/post-list.html
alembic-jekyll-theme-0.1.1 _includes/post-list.html
alembic-jekyll-theme-0.1.0 _includes/post-list.html
alembic-jekyll-theme-0.0.9 _includes/post-list.html
alembic-jekyll-theme-0.0.8 _includes/post-list.html
alembic-jekyll-theme-0.0.7 _includes/post-list.html
alembic-jekyll-theme-0.0.6 _includes/post-list.html
alembic-jekyll-theme-0.0.5 _includes/post-list.html
alembic-jekyll-theme-0.0.4 _includes/post-list.html
alembic-jekyll-theme-0.0.3 _includes/post-list.html
alembic-jekyll-theme-0.0.2 _includes/post-list.html