blob: 7247c3f0666a4408f13105ac6bdfa750dc6e2e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
{{ define "main" }}
<section class="min-h-[calc(100vh-200px)] flex items-center justify-center px-4 py-12">
<div class="max-w-4xl w-full">
<!-- Profile Image (optional) -->
{{ if .Params.image }}
<div class="flex justify-center mb-8">
<img
src="{{ .Params.image }}"
alt="{{ .Site.Params.author }}"
loading="lazy"
class="w-32 h-32 md:w-48 md:h-48 rounded-full border-4 border-accent object-cover"
>
</div>
{{ end }}
<!-- Author Name -->
<!-- <h1 class="text-4xl md:text-5xl font-bold text-accent text-center mb-4">
{{ .Site.Params.author }}
</h1>
-->
<!-- Bio (from page content) -->
<div class="text-xl text-text-dim text-center mb-8 leading-relaxed prose prose-invert max-w-none">
{{ .Content }}
</div>
<!-- Call-to-Action Buttons -->
<div class="flex flex-col sm:flex-row gap-4 justify-center">
{{ $lang := .Lang }}
{{ $articlesUrl := "/articles/" }}
{{ $contactUrl := "/is/here/" }}
{{ if eq $lang "it" }}
{{ $articlesUrl = "/it/articles/" }}
{{ $contactUrl = "/it/is/here/" }}
{{ end }}
<!-- Articles Button (Primary) -->
<a
href="{{ $articlesUrl }}"
class="btn btn-primary btn-lg"
>
{{ i18n "articles" }}
</a>
<!-- Contact Button (Outline) -->
<a
href="{{ $contactUrl }}"
class="btn btn-outline btn-lg"
>
{{ i18n "contact" }}
</a>
</div>
</div>
</section>
{{ end }}
|