15 lines
402 B
HTML
15 lines
402 B
HTML
{{ define "main" }}
|
|
{{- with site.Params.homeInfoParams }}
|
|
<article class="first-entry home-info">
|
|
<header class="entry-header">
|
|
<h1>{{ .Title }}</h1>
|
|
</header>
|
|
<div class="entry-content">
|
|
{{ .Content}}
|
|
</div>
|
|
<footer class="entry-footer">
|
|
{{ partial "social_icons.html" site.Params.socialIcons }}
|
|
</footer>
|
|
</article>
|
|
{{- end -}}
|
|
{{ end }} |