📜  nunjucks 条件 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:46.899000             🧑  作者: Mango

代码示例1
{% if variable %}
  It is true
{% endif %}

{% if hungry %}
  I am hungry
{% elif tired %}
  I am tired
{% else %}
  I am good!
{% endif %}