hugo-PaperMod/layouts/partials/home_info.html

13 lines
394 B
HTML
Raw Normal View History

{{- with $.Site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
<h2>{{- .Title }}</h2>
</header>
<section class="entry-content">
<p>{{- .Content | markdownify }}</p>
</section>
2020-08-28 13:49:10 +02:00
<footer class="entry-footer">
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
2020-08-28 13:49:10 +02:00
</footer>
</article>
{{- end}}