{%- macro source_info(type,url) %}
{% if type == 1 %}
原创
{% elseif type == 2 %}
转载
{% elseif type == 3 %}
翻译
{% else %}
N/A
{% endif %}
{%- endmacro %}
{%- macro tags_info(items) %}
{% for item in items %}
{% set comma = loop.last ? '' : ',' %}
{{ item.name ~ comma }}
{% endfor %}
{%- endmacro %}