congo/layouts/partials/home/profile.html

37 lines
1.1 KiB
HTML
Raw Normal View History

2021-08-15 08:41:40 +00:00
<article
class="flex flex-col items-center justify-center text-center {{ if not .Site.Params.homepage.showRecent }}
2021-08-15 08:41:40 +00:00
h-full
{{ end }}"
2021-08-15 08:41:40 +00:00
>
<header class="flex flex-col items-center mb-3">
2021-08-15 08:41:40 +00:00
{{ with .Site.Author.image }}
2022-01-11 01:29:21 +00:00
{{ $authorImage := resources.Get . }}
{{ if $authorImage }}
{{ $authorImage := $authorImage.Fill "288x288" }}
<img
class="mb-2 rounded-full w-36 h-36"
width="144"
height="144"
alt="{{ $.Site.Author.name | default "Author" }}"
2022-01-11 01:29:21 +00:00
src="{{ $authorImage.RelPermalink }}"
/>
{{ end }}
2021-08-15 08:41:40 +00:00
{{ end }}
<h1 class="text-4xl font-extrabold">
{{ .Site.Author.name | default .Site.Title }}
</h1>
2022-01-12 01:32:29 +00:00
{{ with .Site.Author.headline }}
<h2 class="text-xl text-neutral-500 dark:text-neutral-400">
{{ . | markdownify | emojify }}
2022-01-12 01:32:29 +00:00
</h2>
{{ end }}
2021-08-15 08:41:40 +00:00
<div class="mt-1 text-2xl">
{{ partialCached "author-links.html" . }}
</div>
</header>
<section class="prose dark:prose-invert">{{ .Content | emojify }}</section>
2021-08-15 08:41:40 +00:00
</article>
<section>
{{ partial "recent-articles.html" . }}
</section>