Sha256: c68beed51fe095db595c1804321ff6c8f09c3620b0f368ffba06a9df7e0a7094

Contents?: true

Size: 857 Bytes

Versions: 9

Compression:

Stored size: 857 Bytes

Contents

{%- assign last = 'first' -%}
{%- assign posts = include.posts | reverse -%}
{%- for cur in posts -%}
{%- assign trigger = cur.date | date: include.first -%}
{%- if trigger == include.range and cur.hidden != true -%}
{%- assign now = cur.date | date: include.second -%}
{%- if now != last -%}
{%- if last == 'first' -%}
<dl class="ml-card-list">
{%- else -%}
		</ul>
	</dd>
{%- endif -%}
{%- assign last = now -%}
	<dt>{{ last }}</dt>
	<dd>
		<ul>
{%- endif -%}
			<li>
				<a href="{{ cur.url | relative_url }}" class="ml-card-anchor">
					{%- if cur.image -%}
					<img src="{{ cur.image | relative_url }}" />
					{%- endif -%}
					<div class="ml-card-text">
						<h2>{{ cur.title }}</h2>
						{%- if site.show_excerpts -%}
						{{ cur.excerpt }}
						{%- endif -%}
					</div>
				</a>
			</li>
{%- endif -%}
{%- endfor -%}
		</ul>
	</dd>
</dl>


Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
jekyll-theme-2038-0.1.8 _includes/time-line.html
jekyll-theme-2038-0.1.7 _includes/time-line.html
jekyll-theme-2038-0.1.6 _includes/time-line.html
jekyll-theme-2038-0.1.5 _includes/time-line.html
jekyll-theme-2038-0.1.4 _includes/time-line.html
jekyll-theme-2038-0.1.3 _includes/time-line.html
jekyll-theme-2038-0.1.2 _includes/time-line.html
jekyll-theme-2038-0.1.1 _includes/time-line.html
jekyll-theme-2038-0.1.0 _includes/time-line.html