heading.html 427 B

1234567891011121314
  1. {% import 'base/link.html' as link %}
  2. {% from 'topic/item/_macro.html' import title %}
  3. {% set author = topic.author %}
  4. <div class="panel-heading media">
  5. <div class="media-body">
  6. <h3 class="media-heading" style="font-size:20px;"><b>{{ topic.title }}</b></h3>
  7. <small style="color:#999">
  8. {{ title(topic) }}
  9. </small>
  10. </div>
  11. <div class="media-right">
  12. {{ link.user_avatar(topic.author) }}
  13. </div>
  14. </div>