| 1 | {{- with site.Params.homeInfoParams }} |
| 2 | <article class="first-entry home-info"> |
| 3 | <header class="entry-header"> |
| 4 | <h1>{{ .Title | markdownify }}</h1> |
| 5 | </header> |
| 6 | <div class="entry-content md-content"> |
| 7 | {{ $opts := dict "display" "block" }} |
| 8 | {{ .Content | $.Page.RenderString $opts }} |
| 9 | </div> |
| 10 | <footer class="entry-footer"> |
| 11 | {{ partial "social_icons.html" (dict "align" site.Params.homeInfoParams.AlignSocialIconsTo) }} |
| 12 | </footer> |
| 13 | </article> |
| 14 | {{- end -}} |