Skip to content

Instantly share code, notes, and snippets.

@kaustubhgupta
Created April 19, 2022 15:01
{% macro generateList(input_list)%}
<ul>
{% for i in input_list %}
<li>{{i}}</li>
{% endfor %}
</ul>
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment