diff options
Diffstat (limited to 'tpl/objects/bubble-group.pug')
-rw-r--r-- | tpl/objects/bubble-group.pug | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tpl/objects/bubble-group.pug b/tpl/objects/bubble-group.pug new file mode 100644 index 0000000..c2e502a --- /dev/null +++ b/tpl/objects/bubble-group.pug | |||
@@ -0,0 +1,22 @@ | |||
1 | mixin bubble-group(user) | ||
2 | - | ||
3 | let first = true | ||
4 | |||
5 | mixin bubble-group-bubble(time) | ||
6 | +bubble(time, first ? user : undefined)(class='l-bubble-group__bubble') | ||
7 | block | ||
8 | - | ||
9 | first = false | ||
10 | |||
11 | - | ||
12 | let classes = { | ||
13 | 'l-bubble-group': true | ||
14 | } | ||
15 | if (attributes.class) { | ||
16 | classes[attributes.class] = true | ||
17 | } | ||
18 | |||
19 | section(class=classes) | ||
20 | .l-bubble-group__avatar | ||
21 | +avatar= user.slice(0, 2) | ||
22 | block | ||