mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2024-11-22 06:11:30 +00:00
62 lines
1.8 KiB
HTML
62 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 }}
|
||
|
|
||
|
{{/* Get summary. */}}
|
||
|
{{ $summary := "" }}
|
||
|
{{ if $item.Params.summary }}
|
||
|
{{ $summary = $item.Params.summary | markdownify | emojify }}
|
||
|
{{ else if .Params.abstract }}
|
||
|
{{ $summary = .Params.abstract | markdownify | emojify }}
|
||
|
{{ else if $item.Summary }}
|
||
|
{{ $summary = $item.Summary }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ $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 }}">
|
||
|
<div class="row align-items-center">
|
||
|
<div class="col-12 col-md-6">
|
||
|
<h3 class="article-title mb-0 mt-0">
|
||
|
{{- if $do_link}}<a href="{{ $link }}" {{ $target | safeHTMLAttr }}>{{end -}}
|
||
|
{{ $item.Title | markdownify | emojify }}
|
||
|
{{- if $do_link}}</a>{{end -}}
|
||
|
</h3>
|
||
|
|
||
|
{{ with $summary }}
|
||
|
<div class="article-style">
|
||
|
{{ . }}
|
||
|
</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 }}" alt="">
|
||
|
{{if $do_link}}</a>{{end}}
|
||
|
{{end}}
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|