14 lines
440 B
HTML
14 lines
440 B
HTML
{{- with site.Params.homeInfoParams }}
|
|
<article class="first-entry home-info">
|
|
<header class="entry-header">
|
|
<h1>{{ .Title | markdownify }}</h1>
|
|
</header>
|
|
<section class="entry-content">
|
|
<p>{{ .Content | markdownify }}</p>
|
|
</section>
|
|
<footer class="entry-footer">
|
|
{{ partial "social_icons.html" (dict "icons" site.Params.socialIcons "svg" $.Site.Data.svg) }}
|
|
</footer>
|
|
</article>
|
|
{{- end -}}
|