hugo-PaperMod/layouts/partials/homeInfo.html
Aditya Telange 016dd6e9fa
(lint) remove unnecessary whitespace
created by hugo's {{ }}
2020-09-23 12:52:32 +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}}