Add themes folder

This commit is contained in:
Markus 2025-06-07 23:02:15 +02:00
parent 78eab7dcac
commit 077da5b941
108 changed files with 6225 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<div class="widget widget-latest-post">
<h4 class="widget-title">{{ i18n "latest_posts" }}</h4>
{{ range first 4 (where site.Pages "Type" "post") }}
<div class="media">
<a class="pull-left" href="{{ .RelPermalink }}">
{{ if isset .Params "image" }}
<img class="media-object" src="{{ .Params.image | relURL }}" alt="{{ .Title }}">
{{ end }}
</a>
<div class="media-body">
<h4 class="media-heading"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h4>
<p>{{ .Summary | truncate 50 }}</p>
</div>
</div>
{{ end }}
</div>