mirror of
https://git.sr.ht/~roxwize/mipilin
synced 2025-01-31 02:53:36 +00:00
15 lines
373 B
Text
15 lines
373 B
Text
|
mixin feed(feed, hideUser)
|
||
|
if feed.length > 0
|
||
|
#feed
|
||
|
for update of feed
|
||
|
.feed-update
|
||
|
div
|
||
|
a(href=`/users/${update.user}`)
|
||
|
if !hideUser
|
||
|
| #{update.user}
|
||
|
strong= update.mood
|
||
|
div= update.desc || "[no mood description provided]"
|
||
|
div= update.date
|
||
|
else
|
||
|
span [no updates]
|