Back to Go Micro

Variant Card

internal/website/layouts/_shortcodes/elements/variant-card.html

6.9.0573 B
Original Source

{{/* Variant can be one of: dark, light, gradient. */ -}} {{ $color := .Get "color" | default "dark" -}} {{/* Height can be one of: auto, min, med, max, full. */ -}} {{ $height := .Get "height" | default "max" -}} {{/* Content can be one of: top, bottom. */ -}} {{ $content := .Get "content" | default "top" -}}

{{ if eq $content "top" }} {{ .Inner -}} {{ end }} {{ with .Get "title" -}}

{{- $title := . -}} {{ $title | html -}}

{{ end -}} {{ with .Get "subtitle" -}}

{{ . | html }}

{{ end -}} {{ if eq $content "bottom" }} {{ .Inner -}} {{ end }} {{/**/ -}}