heading.html 389 B

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