20 lines
612 B
HTML
Executable File
20 lines
612 B
HTML
Executable File
<li class="col-xs-12 col-sm-4">
|
|
<div>
|
|
{{- $site := . -}}
|
|
{{- range .Resources.ByType "image" -}}
|
|
{{- if .Params.featured -}}
|
|
{{- $orig := .}}
|
|
{{ partial "figure.html" (dict "image" $orig "ctx" $site "class" "fill")}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</div>
|
|
<header>
|
|
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
</header>
|
|
<div>
|
|
{{ .Summary }}
|
|
{{- if .Truncated -}}
|
|
<a href="{{ .RelPermalink }}">{{ i18n "read-more" }}…</a>
|
|
{{- end -}}
|
|
</div>
|
|
</li> |