noveria.org/layouts/shortcodes/news.html
2023-12-22 14:53:37 +01:00

15 lines
622 B
HTML

<!-- Get Data maybe from strapi -->
<div class="flex flex-col">
{{ range last 4 (site.GetPage "posts").Pages.ByDate }}
<div class="flex-auto">
<h3 class="mb-0">{{ .Title }}</h3>
<small>{{ .Date | time.Format ":date_long" }}</small>
</div>
<p>{{ .Summary }}</p>
<a
class="text-white bg-blue-700 hover:bg-blue-800 focus:outline-none focus:ring-4 focus:ring-blue-300 font-medium rounded-full text-sm px-5 py-2.5 text-center me-2 mb-2 dark:bg-blue-600 dark:hover:bg-blue-700 dark:focus:ring-blue-800 max-w-2xs"
href="{{ .RelPermalink }}">
Read more
</a>
{{ end }}
</div>