Hệ thống cửa hàng

Giới thiệu

Trang hệ thống cửa hàng là trang danh sách các cửa hàng của khách hàng.

Trang hệ thống cửa hàng của 1 website cơ bản thì sẽ bao gồm các nội dung sau:

Thẻ meta trang hệ thống cửa hàng

Thẻ Meta là các đoạn văn bản mô tả nội dung của trang, các thẻ này không xuất hiện trên chính trang mà chỉ xuất hiện trong phần mã nguồn của trang. Về cơ bản chúng giúp cho các công cụ tìm kiếm hiểu rõ hơn về nội dung của một trang web, do vậy rất tốt cho SEO.

Dưới đây là cách thức lấy thẻ meta trang hệ thống cửa hàng của website:

{% block meta %}
    {{ headTitle('Hệ thống cửa hàng').setSeparator(' - ').setAutoEscape(false)|raw }}
    <meta name="keywords" content="Hệ thống cửa hàng">
    <meta name="description" content="Hệ thống cửa hàng">
    <link rel="canonical" href="{{ getCurrentUrl(true) }}" />
    <meta property="og:url" content="{{ getCurrentUrl(true) }}">
    <meta property="og:image" content="https://dummyimage.com/300x200/000/fff">
    <meta property="og:type" content="website">
    <meta property="og:title" content="Hệ thống cửa hàng">
{% endblock %}

Danh sách cửa hàng

Lọc ra tên cửa hàng , địa chỉ , số điện thoại của từng cửa hàng

<select name="change-tinh" class="change-tinh">
    <option value="">{{translate('Cửa hàng')}}</option>
    
{% if(citiesAgencies is not empty) %}
        {% for c in citiesAgencies %}
            <option data-name="{{c.nativeName}}" data-address="{{c.address}}" value="{{c.id}}">{{c.nativeName}}</option>
        {% endfor %}
    {% endif %}
</select>
<div class="address-cont">
    <div class="address-detail">
        <ul id="address-link">
            {% if(citiesAgencies is not empty) %}
                {% for c in citiesAgencies %}
                    {% if(c.options['agencies']) %}
                        {% for agc in c.options['agencies'] %}
                        <li class="cn_tenchinhanh" data-depotId="{{agc.id}}" data-address="{{agc.address}}" data-name="{{agc.name}}" data-email="{{agc.email}}" data-phone="{{agc.phone}}" data-img="{{agc.imageUri}}" data-content="{{agc.content}}">
                            <a data-depotId="{{agc.id}}" data-address="{{agc.address}}" data-name="{{agc.name}}" data-email="{{agc.email}}" data-phone="{{agc.phone}}" data-img="{{agc.imageUri}}" data-content="{{agc.content}}">
                                <b style="margin-bottom: 10px;display: inline-block">{{agc.name}}</b>
                                <p style="display: block">{{agc.address}}</p>
                                <p style="display: block">SĐT: {{agc.phone}}</p>
                            </a>
                        </li>
                        {% endfor %}
                    {% endif %}
                {% endfor %}
            {% endif %}
            <?php
           
        </ul>
    </div>
</div>

Last updated