mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-24 04:01:31 +08:00
18 lines
465 B
Plaintext
18 lines
465 B
Plaintext
{%- macro source_info(type,url) %}
|
|
{% if type == 1 %}
|
|
<span>原创</span>
|
|
{% elseif type == 2 %}
|
|
<a href="{{ url }}" target="_blank">转载</a>
|
|
{% elseif type == 3 %}
|
|
<span>翻译</span>
|
|
{% else %}
|
|
<span>N/A</span>
|
|
{% endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro tags_info(items) %}
|
|
{% for item in items %}
|
|
{% set comma = loop.last ? '' : ',' %}
|
|
{{ item.name ~ comma }}
|
|
{% endfor %}
|
|
{%- endmacro %} |