hugo-PaperMod/layouts/partials/home_info.html
2022-03-30 16:03:55 +02:00

30 lines
613 B
HTML

{{- with site.Params.homeInfoParams }}
<style>
img {
border-radius: 50%;
width: 8rem;
}
.lediv {
margin-bottom: 20px;
}
.buttons {
justify-content: flex-start;
margin: 0;
}
</style>
<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 -}}