{{ i18n("notes") }} {% if (not isEmptyString(title)) then %}

{* title *}

{% end %} {% local tag = ternary(is_ordered, "ol", "ul") %} <{{tag}}> {% for i, note in ipairs(notes) do %} {% if not note.hidden then %} {% if(type(note.content) == "table") then %} {% for _, msg in ipairs(note.content) do %}
  • {* msg *}
  • {% end %} {% else %}
  • {* note.content *}
  • {% end %} {% end %} {% end %}