File: //var/www/linde-ai/wp-content/themes/linde/templates/partials/partial-example.twig
{# This is an example partial file that can be reused in project,
it can have variables and be used for example like this:
{% include "templates/partials/partial-example.twig" with {'menu': menu.footer_left} %}
Delete this folder if no partials needed.
#}
<div class="col col col-12 col-md-4">
<h3 class="text-uppercase text-bold">{{ menu.title }}</h3>
<ul>
{% for item in menu.get_items %}
<li><a href="{{ item.link }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
</div>