{% if displayTogether|length > 0 %}
<div class="recentview-list">
{% for v in displayTogether %}
<div class="recentview-item">
<div class="recentview-image">
<a href="/item/{{ v.item_id }}.html">
<img class="recommend-images" alt="{{ v.goods_name | display_text }}" src="{{ v.img | display_text }}" />
</a>
</div>
<div class="recentview-caption">
<a href="/item/{{ v.item_id }}.html">{{ php_mb_strimwidth(v.goods_name, 0, 75, "...") }}</a>
{% if useCache is defined and useCache == true %}
<div id="together-price-{{ v.goods_id }}" class="together-price-style"></div>
{% else %}
<div class="recentview-price">{{ php_number_format(php_round(v.min_gp_price)) }}円(税込){% if v.count_gp_price > 1 %} ~{% endif %}</div>
{% endif %}
{% if v.average is defined %}
<div class="history-average">
{% if v.average > 0 %}
{{ v.average_img | raw }}
<span class="history-average-bracket">(</span><span class="history-average-point">{{ v.review_count }}</span><span class="history-average-bracket">)</span>
{% endif %}
</div>
{% endif %}
</div>
</div>
{% endfor %}
</div>
{% endif %}