hugo-PaperMod/layouts/partials/home_info.html
Aditya Telange 6dcd437146
social-icons: refactor
* use easier impl
2020-10-02 13:46:49 +05:30

13 lines
No EOL
384 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">
{{- partial "social_icons.html" $.Site.Params.socialIcons -}}
</footer>
</article>
{{- end}}