hugo-PaperMod/layouts/partials/home_info.html
2021-12-14 14:43:11 +01:00

14 lines
428 B
HTML

{{- with $.Site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
<h1>{{ .Title | markdownify }}</h1>
</header>
<section class="entry-content">
{{ .Content | $.RenderString (dict "display" "block") }}
</section>
<footer class="entry-footer">
{{ partial "social_icons.html" $.Site.Params.socialIcons }}
</footer>
</article>
{{- end -}}