diff options
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 |