diff options
author | testuser <testuser@archlinux> | 2025-06-15 18:11:33 +0530 |
---|---|---|
committer | testuser <testuser@archlinux> | 2025-06-15 18:11:33 +0530 |
commit | af54cdb9228ccab6dcc1767e05b88a5bf5809783 (patch) | |
tree | a32db3cd749de91d43a2054f5461bfeb6dffed7d /layouts/partials/about.html | |
parent | 76865d553f4b2e0b0e1338514e7791746fdad69f (diff) |
Diffstat (limited to 'layouts/partials/about.html')
-rw-r--r-- | layouts/partials/about.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/partials/about.html b/layouts/partials/about.html new file mode 100644 index 0000000..8d739f1 --- /dev/null +++ b/layouts/partials/about.html @@ -0,0 +1,13 @@ +{{ with .Params.about }} +<div class="bg-white bg-opacity-10 rounded-lg p-6 mb-6 border border-white border-opacity-20"> + <h2 class="text-xl font-bold mb-4">{{ .title }}</h2> + <div class="space-y-4"> + {{ range .sections }} + <div> + <h3 class="font-semibold mb-2">{{ .heading }}</h3> + <p class="text-sm opacity-80">{{ .content }}</p> + </div> + {{ end }} + </div> +</div> +{{ end }}
\ No newline at end of file |