<div id="page" class="row">
<div class="span12 details">
<h1 class="p25">{{ page.title }}</h1>
{{ page.content }}
</div>
</div>
{% for link in linklists.other ocassions.links %}
{% assign collection = link.object %}
<div class="product{% if settings.products_per_row == "4" %} span3{% endif %}{% if settings.products_per_row == "3" %} span4{% endif %}{% if settings.products_per_row == "2" %} span6{% endif %}">
<!-- Begin product image -->
<div class="image">
<a href="{{ collection.url }}">
{% if collection.image %}
<img src="{{ collection.image.src | collection_img_url: 'large' }}" alt="{{ collection.image.alt }}" />
{% else %}
<img src="{{ collection.products.first.featured_image | product_img_url: 'large' }}" alt="{{ collection.title | escape }}" />
{% endif %}
</a>
</div>
<!-- End product image -->
<!-- Begin product description -->
<div class="details">
<a href="{{ collection.url }}" class="clearfix">
<h4 class="title">{{ collection.title }}</h4>
<span class="price">{{ collection.all_products_count }} {{ collection.all_products_count | pluralize: 'Product', 'Products' }}</span>
</a>
</div>
<!-- End product description -->
</div>
{% if settings.products_per_row == "4" %}
{% cycle 'clear-collection-list': '', '', '', '<div style="clear:both;"></div>' %}
{% endif %}
{% if settings.products_per_row == "3" %}
{% cycle 'clear-collection-list': '', '', '<div style="clear:both;"></div>' %}
{% endif %}
{% if settings.products_per_row == "2" %}
{% cycle 'clear-collection-list': '', '<div style="clear:both;"></div>' %}
{% endif %}
{% endfor %}