Remove garbage
All checks were successful
Build and Publish Docker Image / build (push) Successful in 3m32s

This commit is contained in:
2026-05-28 15:07:38 -06:00
parent 6fd57ea48d
commit 681deed7d3
2 changed files with 0 additions and 64 deletions

View File

@@ -1,23 +0,0 @@
{{- $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 -}}