mirror of
https://github.com/zhigang1992/tsemple.git
synced 2026-01-12 22:53:00 +08:00
17 lines
517 B
Plaintext
17 lines
517 B
Plaintext
- cache [topic, locale] do
|
|
a.list-group-item.topic href=topic_last_path(topic)
|
|
.list-group-item-avatar
|
|
img.img-rounded alt="avatar" src=topic.user.avatar.normal.url
|
|
.list-group-item-content
|
|
.list-group-item-heading
|
|
b = topic.title
|
|
.text-muted
|
|
= topic.user.name
|
|
= ' · '
|
|
= time_ago_tag topic.created_at
|
|
- if topic.category
|
|
= ' · '
|
|
= topic.category.name
|
|
= ' · '
|
|
= t '.comments_count', count: topic.comments_count
|