mirror of
https://github.com/chaoming/hugo-saasify-theme.git
synced 2025-04-20 20:51:53 +02:00
8 lines
332 B
HTML
8 lines
332 B
HTML
|
<div class="investor-logo p-6 flex items-center justify-center">
|
||
|
{{ if .Get "image" }}
|
||
|
<img src="{{ .Get "image" }}" alt="{{ .Get "name" }}" class="max-h-12 grayscale hover:grayscale-0 transition-all duration-300">
|
||
|
{{ else }}
|
||
|
<div class="text-xl font-bold text-gray-400">{{ .Get "name" }}</div>
|
||
|
{{ end }}
|
||
|
</div>
|