hugo-PaperMod/layouts/partials/homeInfo.html

15 lines
416 B
HTML
Raw Normal View History

{{ with $.Site.Params.homeInfoParams }}
<article class="first-entry">
<header class="entry-header">
<h2>{{ .Title }}</h2>
</header>
<section class="entry-content">
2020-07-26 08:32:14 +02:00
<p>{{ .Content | plainify | htmlUnescape }}</p>
</section>
{{- with $.Site.Params.socialIcons }}
<div class="social-icons">
{{ partial "social-icons.html" . }}
</div>
{{- end }}
</article>
{{end}}