summaryrefslogtreecommitdiffstats
path: root/layouts/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/index.html')
-rw-r--r--layouts/index.html59
1 files changed, 59 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html
new file mode 100644
index 0000000..fd3cfa0
--- /dev/null
+++ b/layouts/index.html
@@ -0,0 +1,59 @@
+{{ 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>
+
+ <!-- Tag Cloud Section -->
+ <div class="mt-16 pt-8 border-t border-border">
+ {{ partial "tag-cloud.html" (dict "page" . "showCount" true "wrapInWidget" false) }}
+ </div>
+ </div>
+</section>
+{{ end }}