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

17 lines
503 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 }}
2017-06-13 14:02:07 +01:00
<a href="{{ .Permalink }}">
<span class="image featured" data-image="{{ .Params.image }}"></span>
</a>
2017-05-09 09:13:41 +01:00
{{ end }}
2017-09-16 20:44:12 +01:00
{{ if .Params.date }}
<small title="{{ .Date.Format "January 2 2006" }}">{{ .Date.Format "2006-01-02" }}</small>
{{ end }}
2017-05-09 09:13:41 +01:00
<a href="{{ .Permalink }}">
<h3>{{ title .LinkTitle }}</h3>
</a>
{{ partial "summary_string.html" . }}
2017-05-09 09:13:41 +01:00
</section>
</div>