Files
taco-blog/layouts/partials/meta/mood.html
taco 6fd57ea48d
Some checks are pending
Build and Publish Docker Image / build (push) Waiting to run
Implement firebase
2026-05-28 15:07:00 -06:00

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 -}}