+
+ {{ with $target.Params.externalUrl }}
+
+
+ {{ $target.Title | emojify }}
+
+ ↗
+ ↖
+
+
+
+ {{ else }}
+
+ {{ $target.Title | emojify }}
+
+ {{ end }}
+ {{ if and $target.Draft site.Params.article.showDraftLabel }}
+
+ {{ partial "badge.html" (i18n "article.draft" | emojify) }}
+
+ {{ end }}
+ {{ if templates.Exists "partials/extend-article-link.html" }}
+ {{ partial "extend-article-link.html" $target }}
+ {{ end }}
+
+
+ {{ partial "article-meta/basic.html" $target }}
+
+ {{ $showSummary := false }}
+ {{ if ne $shortcodeShowSummary nil }}
+ {{ $showSummary = $shortcodeShowSummary }}
+ {{ else }}
+ {{ $showSummary = $target.Params.showSummary | default (site.Params.list.showSummary | default false) }}
+ {{ end }}
+ {{ if $showSummary }}
+
+
+ {{ $target.Summary | plainify }}
+
+
+ {{ end }}
+
+