2016-08-09 10:39:57 +01:00
|
|
|
{% macro show_more(url=None, label=None) %}
|
|
|
|
|
{% if url and label %}
|
|
|
|
|
<a href="{{ url }}" class="show-more"><span>{{ label }}</span></a>
|
|
|
|
|
{% else %}
|
|
|
|
|
<span class="show-more-empty"></span>
|
|
|
|
|
{% endif %}
|
2016-05-11 15:05:40 +01:00
|
|
|
{% endmacro %}
|