{% if banner.getCityIds()[0] == getCurrentCity().getID() %} 
    <div data-id="{{ banner.getID() }}" class="comments-banner" style="margin: 20px auto;"> 
        {% if banner.isJavaScript() %} 
            {{ banner.getCode()|raw }} 
        {% else %} 
            {% if '.swf' in banner.getFilePath() %} 
                {% include 'Slivki/banners/swf_banner.html.twig' with {'banner': banner, 'width': '650', 'height': '90'} %} 
            {% else %} 
                <a href="{{ banner.getURL() }}" target="_blank" rel="nofollow"> 
                    <img style="border:none; margin: 0 auto;" src="{{ banner.getFilePath() }}" alt="{{ banner.getTitle() }}" title="{{ banner.getTitle() }}"/> 
                </a> 
            {% endif %} 
        {% endif %} 
    </div> 
{% endif %}