1
Fork 0
theorangeone.net-legacy/layouts/partials/box_image.html

15 lines
492 B
HTML
Raw Normal View History

2017-05-09 09:13:41 +01:00
<div class="col-sm-6">
<section class="box special image">
{{ if .Params.image }}
<span class="image featured"><img src="{{ .Params.image }}" alt="{{ .Title }} featured image" /></span>
{{ end }}
<a href="{{ .Permalink }}">
<h3>{{ title .LinkTitle }}</h3>
</a>
<p>{{ .Summary | truncate .Site.Params.summary_length "..." }}</p>
<ul class="actions">
<li><a href="{{ .Permalink }}" class="button alt">Read More</a></li>
</ul>
</section>
</div>