sahibinden gallery update

This commit is contained in:
Metehan Celik 2021-12-23 14:48:25 +03:00
parent 6c2a6c6d1c
commit 0332cfcb2e

View File

@ -19,14 +19,14 @@
</a> </a>
</div> </div>
<div class="product-info-hb d-flex flex-column px-lg-3 px-2 mt-3"> <div class="product-info-hb d-flex flex-column px-lg-3 px-2 mt-3">
<a href="{{ adv.detail_url }}" class="product-name-hb px-lg-3 px-2 text-dark"> <a href="{{ adv.detail_url }}" class="product-name-hb text-decoration-none line-clamp text-dark">
{{ adv.name }} <h3 class="fs-14 text-uppercase"> {{ adv.name }} </h3>
</a> </a>
{% if not setting_value('visiosoft.module.advs::hide_ad_cat') %} {% if not setting_value('visiosoft.module.advs::hide_ad_cat') %}
<a href="{{ adv.detail_url }}" class="product-name-hb px-lg-3 px-2 text-dark">{{ adv.cat1_name }} /{{ adv.cat2_name }}</a> <a href="{{ adv.detail_url }}" class="product-name-hb text-truncate text-decoration-none text-dark">{{ adv.cat1_name }} /{{ adv.cat2_name }}</a>
{% endif %} {% endif %}
{% if showPrice %} {% if showPrice %}
<div class="product-price-hb font-weight-bold px-lg-3 px-2 mt-2 text-dark"> <div class="product-price-hb rounded d-flex align-items-center px-lg-3 px-2 mt-2 text-dark">
{{ adv.price != '0' ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }} {{ adv.price != '0' ? currency_format(adv.price,adv.currency) : trans('visiosoft.module.advs::field.free') }}
</div> </div>
{% endif %} {% endif %}
@ -39,6 +39,14 @@
{% endblock %} {% endblock %}
{% block styles %}
<style>
{{ asset_inline('visiosoft.theme.base::css/theme.css') }}
</style>
{{ asset_style('visiosoft.module.advs::css/list.css') }}
{{ asset_style('visiosoft.module.advs::css/list-new.scss') }}
{% endblock %}
{% block customjs %} {% block customjs %}
{{ asset_add("scripts.js", "visiosoft.module.advs::js/list-table.js") }} {{ asset_add("scripts.js", "visiosoft.module.advs::js/list-table.js") }}
{% include "theme::scroll-modal" %} {% include "theme::scroll-modal" %}