[fix] [hot] website product list make full urls

This commit is contained in:
Rushabh Mehta 2015-05-12 11:31:11 +05:30
parent 8f96c39be6
commit 9cf1edc2c0

View File

@ -1,15 +1,15 @@
<!-- TODO product listing --> <!-- TODO product listing -->
<div class="container content"> <div class="container content">
<div style="height: 120px; overflow: hidden;"> <div style="height: 120px; overflow: hidden;">
<a href="{{ route or page_name }}"> <a href="{{ (route or page_name)|with_leading_slash }}">
{%- if website_image -%} {%- if website_image -%}
<img class="product-image" style="width: 80%; margin: auto;" src="{{ website_image }}"> <img class="product-image" style="width: 80%; margin: auto;" src="{{ website_image|with_leading_slash }}">
{%- else -%} {%- else -%}
<div style="width: 80%; height: 120px; background-color: #F7FAFC;"></div> <div style="width: 80%; height: 120px; background-color: #F7FAFC;"></div>
{%- endif -%} {%- endif -%}
</a> </a>
</div> </div>
<div style="height: 100px; overflow: hidden; font-size: 80%;"> <div style="height: 100px; overflow: hidden; font-size: 80%;">
<div><a href="{{ route or page_name }}">{{ item_name }}</a></div> <div><a href="{{ (route or page_name)|with_leading_slash }}">{{ item_name }}</a></div>
</div> </div>
</div> </div>