Как показать рекламу между циклами?Это возможно?это хороший способ показа рекламы?
ниже мой код не работает внутри цикла
{% for branch_obj in branch_list %}
<div>cards</div>
{% if forloop.counter == 2 %}
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- squre for blog -->
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-xxxxxxx"
data-ad-slot="xxxxxxx"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
{% endif %}
{% endfor %}