Some checks are pending
Build and Publish Docker Image / build (push) Waiting to run
23 lines
655 B
HTML
23 lines
655 B
HTML
{{- $mood := .Params.mood | default "" -}}
|
|
{{- if $mood -}}
|
|
{{- $moods := dict
|
|
"happy" "😊"
|
|
"sad" "😢"
|
|
"neutral" "😐"
|
|
"excited" "🤩"
|
|
"thoughtful" "🤔"
|
|
"angry" "😠"
|
|
"love" "😍"
|
|
"surprised" "😮"
|
|
"confused" "😕"
|
|
"tired" "😴"
|
|
"laughing" "😂"
|
|
"cool" "😎"
|
|
"crazy" "🤪"
|
|
"silly" "😜"
|
|
"worried" "😰"
|
|
"party" "🥳"
|
|
-}}
|
|
{{- $emoji := index $moods $mood | default "😐" -}}
|
|
<span class="inline-flex items-center gap-1 text-2xl" role="img" aria-label="{{ $mood }} mood">{{ $emoji }}</span>
|
|
{{- end -}} |