hugo/layouts/shortcodes/link.html
2021-12-16 00:07:58 +00:00

20 lines
666 B
HTML

{{$URL := .Get 0}}
{{ with .Site.GetPage $URL }}
<div class="post-preview">
<div class="post-preview--meta" style="width:100%;">
<div class="post-preview--middle">
<h4 class="post-preview--title">
<a target="_blank" href="{{ .Permalink }}">{{ .Title }}</a>
</h4>
<time class="post-preview--date">{{ .Date.Format ( default "2006-01-02") }}</time>
{{ if .Params.tags }}
<small>{{ range .Params.tags }}#{{ . }}&nbsp;{{ end }}</small>
{{ end }}
<section style="max-height:105px;overflow:hidden;" class="post-preview--excerpt">
{{ .Summary | plainify}}
</section>
</div>
</div>
</div>
{{ end }}