PaperModX/layouts/partials/home_info.html

14 lines
511 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">
2022-05-19 09:38:00 +01:00
{{- partial "social_icons.html" (dict "icons" site.Params.socialIcons "svg" $.Site.Data.svg "MaskedEmail" site.Params.MaskedEmail "Email" site.Params.Email) -}}
2020-08-28 12:49:10 +01:00
</footer>
</article>
2021-03-30 13:37:36 +01:00
{{- end -}}