heading.html 554 B

123456789101112131415
  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. <a href="{{ url_for('user.user',username=topic.author.username)}}">
  12. <img class="media-object img-circle" src="{{ url_for('avatar',text=author.username)}}" style="width:56px;height:56px">
  13. </a>
  14. </div>
  15. </div>