- {{ $item := .item }}
- {{ $widget := .widget }}
- {{ $link := .link }}
- {{ $target := .target }}
- {{ $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">
- <i class="far fa-copy pub-icon" aria-hidden="true"></i>
- <span class="project-title">
- <a href="{{ $link }}" {{ $target | safeHTMLAttr }} itemprop="url">{{ $item.Title | markdownify | emojify }}</a>
- </span>
- {{ with $item.Params.summary }}<p class="project-summary">{{ . | markdownify | emojify }}</p>{{ end }}
- </div>
|