我如何在锚点周围添加 "if condition" 来检查字段值是否为空?

How can i add "if condition" around the anchor to check the field value empty or not?

我需要检查锚 URL 是否从 CMS 添加?

实际上还没有找到任何有用的东西 link,但我需要帮助,我已经创建了一个电子邮件小部件,当我拖放时我需要添加锚点,如果 url 添加在 Kentico 电子邮件 CMS 的字段中,如果未在锚字段中添加任何内容,则不应添加锚 html。 请帮忙!

提前致谢。

这是小部件中的锚代码:

<td>
<a href="{% Header_Circulation_Link %}">Read More</a>
</td>
{% if (Header_Circulation_Link == null) { %}
   <div>Its null</div>
{% } else { %}
   <div>its not null</div>
{% } %}

Equality checks support all available object types, with the following special rules:

Empty strings are equal to null

查看宏docs了解更多