mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
18 lines
426 B
Plaintext
18 lines
426 B
Plaintext
{%- macro source_info(type,url) %}
|
|
{% if type == 1 %}
|
|
原创
|
|
{% elseif type == 2 %}
|
|
<a href="{{ url }}" target="_blank">转载</a>
|
|
{% 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 %} |