58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
{{ $item := .item }}
|
|
{{ $widget := .widget }}
|
|
|
|
{{ $do_link := true }}
|
|
{{ if $item.Params.external_link | or $item.Content }}
|
|
{{ $do_link = true }}
|
|
{{ else }}
|
|
{{ $do_link = false }}
|
|
{{ end }}
|
|
|
|
{{ $link := .link }}
|
|
{{ $target := .target }}
|
|
|
|
{{ $order := "" }}
|
|
{{ if and ($widget.Params.design.flip_alt_rows | default true) (not (modBool .index 2)) }}
|
|
{{ $order = "order-md-2" }}
|
|
{{ end }}
|
|
|
|
{{ $js_tag_classes := delimit (apply (apply $item.Params.tags "replace" "." " " "-") "printf" "js-id-%s" ".") " " }}
|
|
|
|
<div class="col-lg-12 project-item isotope-item {{ $js_tag_classes | safeHTMLAttr }}" itemscope itemtype="http://schema.org/CreativeWork">
|
|
<div class="row align-items-center">
|
|
<div class="col-12 col-md-6">
|
|
<h3 class="article-title mb-0 mt-0" itemprop="name">
|
|
{{- if $do_link}}<a href="{{ $link }}" {{ $target | safeHTMLAttr }} itemprop="url">{{end -}}
|
|
{{ $item.Title | markdownify | emojify }}
|
|
{{- if $do_link}}</a>{{end -}}
|
|
</h3>
|
|
|
|
{{ $summary := "" }}
|
|
{{ if $item.Params.summary }}
|
|
{{ $summary = $item.Params.summary }}
|
|
{{ else if $item.Truncated }}
|
|
{{ $summary = $item.Summary }}
|
|
{{ end }}
|
|
{{ with $summary }}
|
|
<div class="article-style" itemprop="articleBody">
|
|
{{ . | markdownify | emojify }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="btn-links">
|
|
{{ partial "page_links" (dict "page" $item "is_list" 0) }}
|
|
</div>
|
|
|
|
</div>
|
|
<div class="col-12 col-md-6 order-first {{$order}}">
|
|
{{ $resource := ($item.Resources.ByType "image").GetMatch "*featured*" }}
|
|
{{ with $resource }}
|
|
{{ $image := .Resize "540x" }}
|
|
{{if $do_link}}<a href="{{ $link }}" {{ $target | safeHTMLAttr }}>{{end}}
|
|
<img src="{{ $image.RelPermalink }}" itemprop="image" alt="">
|
|
{{if $do_link}}</a>{{end}}
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|