You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
479 B
9 lines
479 B
{% load banners_tags %}
|
|
{% get_next_banner b_block as banner %}
|
|
{% if banner %}
|
|
<div {% if b_id %}id="{{ b_id }}" {% endif %}class="{{ b_class }} banner{{ b_size }}">
|
|
<a target="_blank" href="{% if request.is_secure %}https{% else %}http{% endif %}://{{ request.get_host }}{{ banner.get_click_url }}?url={{ banner.dest_url }}">
|
|
<img src="{{ banner.get_show_url }}?{% now "YmdHis" %}" />
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
|