Sha256: eda29e44da5780d34fb2c63082acf7918a31e1e0caa5705e81f9e97e9b2de130

Contents?: true

Size: 926 Bytes

Versions: 12

Compression:

Stored size: 926 Bytes

Contents

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

						<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 %}
	</section>
{% else %}
	<section class="section  typeset">
		<ul class="list  list--posts">
			{% for page in site.posts %}
				<li class="item  item--post">
					<article class="article  article--post">

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

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alembic-jekyll-theme-3.0.1 _includes/post-list.html
alembic-jekyll-theme-3.0.0 _includes/post-list.html
alembic-jekyll-theme-2.3.1 _includes/post-list.html
alembic-jekyll-theme-2.3 _includes/post-list.html
alembic-jekyll-theme-2.2.5 _includes/post-list.html
alembic-jekyll-theme-2.2.4 _includes/post-list.html
alembic-jekyll-theme-2.2.3 _includes/post-list.html
alembic-jekyll-theme-2.2.2 _includes/post-list.html
alembic-jekyll-theme-2.2.1 _includes/post-list.html
alembic-jekyll-theme-2.2.0 _includes/post-list.html
alembic-jekyll-theme-2.1.2 _includes/post-list.html
alembic-jekyll-theme-2.1.1 _includes/post-list.html