project_li_list.html 644 B

123456789101112131415
  1. {{ $item := .item }}
  2. {{ $widget := .widget }}
  3. {{ $link := .link }}
  4. {{ $target := .target }}
  5. {{ $js_tag_classes := delimit (apply (apply $item.Params.tags "replace" "." " " "-") "printf" "js-id-%s" ".") " " }}
  6. <div class="col-lg-12 project-item isotope-item {{ $js_tag_classes | safeHTMLAttr }}" itemscope itemtype="http://schema.org/CreativeWork">
  7. <i class="far fa-copy pub-icon" aria-hidden="true"></i>
  8. <span class="project-title">
  9. <a href="{{ $link }}" {{ $target | safeHTMLAttr }} itemprop="url">{{ $item.Title }}</a>
  10. </span>
  11. {{ with $item.Params.summary }}<p class="project-summary">{{ . | markdownify }}</p>{{ end }}
  12. </div>