hugo-PaperMod/layouts/partials/home_info.html

14 lines
407 B
HTML
Raw Normal View History

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