PaperModX/layouts/partials/home_info.html

14 lines
445 B
HTML
Raw Normal View History

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
2021-03-30 13:37:36 +01:00
<h1>{{ .Title | markdownify }}</h1>
</header>
<section class="entry-content">
2022-04-21 09:54:49 +01:00
{{- trim .Content "\n" | markdownify -}}
</section>
2020-08-28 12:49:10 +01:00
<footer class="entry-footer">
{{ partial "social_icons.html" (dict "icons" site.Params.socialIcons "svg" $.Site.Data.svg) }}
2020-08-28 12:49:10 +01:00
</footer>
</article>
2021-03-30 13:37:36 +01:00
{{- end -}}