summaryrefslogtreecommitdiffstats
path: root/layouts/_partials/hero.html
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-05 08:41:04 +0200
committerDanilo M. <danix@danix.xyz>2026-04-05 08:41:04 +0200
commitd605b77f6255a605d5afb9cd78649b1d7e301128 (patch)
tree940538abb113b4570fb06d0c5113b091dfd33dee /layouts/_partials/hero.html
parentdcf54cad8529526fd7f8d9d4b84b63ccb3fa9630 (diff)
downloaddanixxyz-theme-d605b77f6255a605d5afb9cd78649b1d7e301128.tar.gz
danixxyz-theme-d605b77f6255a605d5afb9cd78649b1d7e301128.zip
layout: create base layout, header, footer, hero, and post card partials
Diffstat (limited to 'layouts/_partials/hero.html')
-rw-r--r--layouts/_partials/hero.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/layouts/_partials/hero.html b/layouts/_partials/hero.html
new file mode 100644
index 0000000..11034be
--- /dev/null
+++ b/layouts/_partials/hero.html
@@ -0,0 +1,11 @@
+<section class="hero">
+ {{ partial "matrix-canvas.html" . }}
+ <div class="hero-content">
+ <div class="hero-avatar">{{ .Site.Params.avatar }}</div>
+ <div class="hero-text">
+ <h1>{{ .Site.Params.author }}</h1>
+ <div class="hero-role">// engineer • writer • human</div>
+ <p class="hero-bio">{{ .Site.Params.description }}</p>
+ </div>
+ </div>
+</section>