{% set setting = user.setting %}
{% if type == 'topic' %}
{% include 'user/topic.html' %}
{% elif type == 'reply' %}
{% include 'user/reply.html' %}
{% elif type == 'notebook' %}
{% include 'user/notebook.html' %}
{% elif type == 'follower' %}
{% include 'user/follower.html' %}
{% elif type == 'collect' %}
{% include 'user/collect.html' %}
{% endif %}