mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
575cc0ca8c
- The site function provides global access to the same data as the .Site page method. - Current context (`.`) is never considered.
14 lines
403 B
HTML
14 lines
403 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" site.Params.socialIcons }}
|
|
</footer>
|
|
</article>
|
|
{{- end -}}
|