hugo-PaperMod/layouts/partials/home_info.html
2020-09-23 18:23:57 +05:30

17 lines
478 B
HTML

{{- with $.Site.Params.homeInfoParams }}
<article class="first-entry">
<header class="entry-header">
<h2>{{- .Title }}</h2>
</header>
<section class="entry-content">
<p>{{- .Content | markdownify }}</p>
</section>
<footer class="entry-footer">
{{- with $.Site.Params.socialIcons }}
<div class="social-icons">
{{- partial "social_icons.html" . }}
</div>
{{- end }}
</footer>
</article>
{{- end}}