link.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% macro tag(tag) -%}
  2. <a class="tag" href="{{ url_for('tag.tag',tag=tag.tagname)}}">{{ tag.tagname }}</a>
  3. {%- endmacro %}
  4. {% macro topic(topic) -%}
  5. <a href="{{ url_for('topic.topic',topicId=topic.uid)}}">{{ topic.title}}</a>
  6. {%- endmacro %}
  7. {% macro user(username) -%}
  8. <a href="{{ url_for('user.user',user_url=username)}}">{{ username}}</a>
  9. {%- endmacro %}
  10. {% macro board(board) -%}
  11. <a href="{{ url_for('board.board',parent_b=board.parent_board,child_b=board.board)}}">{{ board.board }}</a>
  12. {%- endmacro %}
  13. {% macro collect(collect) -%}
  14. <a href="{{ url_for('mine.collect',collectId=collect.id)}}">{{ collect.name }}</a>
  15. {%- endmacro %}
  16. {% macro collect_list() -%}
  17. <a href="{{ url_for('mine.collect') }}">{{ _('My Created Collects') }}</a>
  18. {%- endmacro %}
  19. {% macro collect_following() -%}
  20. <a href="{{ url_for('mine.collect_following')}}">{{ _('Following Collects')}}</a>
  21. {%- endmacro %}
  22. {% macro following_tag() -%}
  23. <a href="{{ url_for('mine.follow',type="tag")}}">{{ _('Following Tags') }}</a>
  24. {%- endmacro %}
  25. {% macro following_topic() -%}
  26. <a href="{{ url_for('mine.follow',type="topic")}}">{{ _('Following Topics')}}</a>
  27. {%- endmacro %}
  28. {% macro following_user() -%}
  29. <a href="{{ url_for('mine.follow',type="user")}}">{{ _('Following Users')}}</a>
  30. {%- endmacro %}
  31. {% macro following_collect() -%}
  32. <a href="{{ url_for('mine.follow',type="collect")}}">{{ _('Following Collects')}}</a>
  33. {%- endmacro %}
  34. {% macro avatar(author) -%}
  35. {% set infor = author.infor %}
  36. {% if not infor.avatar -%}
  37. {{ url_for('avatar',text = author.username )}}
  38. {% else %}
  39. {{ url_for('upload.avatar_file',filename=infor.avatar) }}
  40. {%- endif %}
  41. {%- endmacro %}