{% set num = (category|length) // 3 %}
<ul class="uList1 ">
{% for item in category %}
{% if loop.index is divisibleby(num) %}
</ul>
<ul class="uList1 ">
{% endif %}
<li><a href="#">{{ item.name }}</a></li>
{% endfor %}
</ul>