hugo-PaperMod/layouts/partials/home_info.html

14 lines
395 B
HTML
Raw Normal View History

{{- with site.Params.homeInfoParams }}
<article class="first-entry home-info">
<header class="entry-header">
2021-03-30 18:07:36 +05:30
<h1>{{ .Title | markdownify }}</h1>
</header>
<div class="entry-content">
2021-03-30 18:07:36 +05:30
<p>{{ .Content | markdownify }}</p>
</div>
2020-08-28 17:19:10 +05:30
<footer class="entry-footer">
{{ partial "social_icons.html" site.Params.socialIcons }}
2020-08-28 17:19:10 +05:30
</footer>
</article>
2021-03-30 18:07:36 +05:30
{{- end -}}