25 lines
781 B
HTML
25 lines
781 B
HTML
<div class="h-full flex flex-col">
|
|
<article
|
|
class="flex flex-col grow items-center justify-center text-center {{ if not .Site.Params.homepage.showRecent }}
|
|
h-full
|
|
{{ end }}"
|
|
>
|
|
<header class="flex flex-col items-center mb-3">
|
|
<h1 class="text-4xl font-extrabold">
|
|
{{ .Site.Params.Author.name | default .Site.Title }}
|
|
</h1>
|
|
{{ with .Site.Params.Author.headline }}
|
|
<h2 class="text-xl text-neutral-500 dark:text-neutral-400">
|
|
{{ . | markdownify | emojify }}
|
|
</h2>
|
|
{{ end }}
|
|
<div class="mt-1 text-2xl">
|
|
{{ partialCached "author-links.html" . }}
|
|
</div>
|
|
</header>
|
|
<section class="prose dark:prose-invert">{{ .Content | emojify }}</section>
|
|
</article>
|
|
<section>
|
|
{{ partial "recent-articles.html" . }}
|
|
</section>
|
|
</div> |