20 lines
666 B
HTML
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 }}#{{ . }} {{ end }}</small>
|
|
{{ end }}
|
|
<section style="max-height:105px;overflow:hidden;" class="post-preview--excerpt">
|
|
{{ .Summary | plainify}}
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|