Files
mozo-backend/app/views/dashboard/cartoon.html.slim
T

16 lines
443 B
Plaintext

- cartoon_text = {\
1 => "I feel like a beer!!", \
2 => "Where is the waiter?", \
3 => "Lets order a beer with my phone!", \
4 => "Now I can do things I like in stead of waitingat the bar", \
5 => "Relaxt, I get my beer as ordered", \
6 => "Qwaiter rocks!!!!" \
}
ul#cartoon
- for i in 1..6
li
.cartoon-image= image_tag "cartoon/qwaiter-cartoon-#{i}.png"
.cartoon-text= cartoon_text[i]
.clearing