Files
admin_hura_8/template/system/setup.html
2024-03-18 12:03:24 +07:00

58 lines
2.3 KiB
HTML

<div class="global-breadcrumb-container">
<a href="/admin/system/setup"> Cài đặt chung </a>
<a href=""> Cài đặt hiển thị </a>
</div>
<div class="max-w-[1141px] flex flex-wrap items-start m-[0_auto_16px_auto]">
<div
class="w-[100%] p-[11px_16px] bg-white m-[0_0_16px] rounded-[10px] shadow-[0px_1px_1px_0px_rgba(0,0,0,0.10)] leading-[18px]">
<p class="font-bold text-[20px] leading-[26px] mb-[10px]"> Cài đặt hiển thị </p>
</div>
<div
class="w-[270px] m-[0_16px_0_0] bg-white rounded-[10px] shadow-[0px_1px_1px_0px_rgba(0,0,0,0.10)] font-[500] leading-[24px] overflow-hidden">
<a href="/admin/system/setup/option=general" {% if global.url contains 'option=general' %}
style="color: #Fff;background: #0041E8;" {% endif %}
class="block p-[6px_16px] text-[#919699] hover:text-[#fff] hover:bg-[#0041E8] transition">Cài
đặt chung
</a>
<a href="/admin/system/setup/option=homepage" {% if global.url contains 'option=homepage' %}
style="color: #Fff;background: #0041E8;" {% endif %}
class="block p-[6px_16px] text-[#919699] hover:text-[#fff] hover:bg-[#0041E8] transition">
Trang chủ
</a>
<a href="/admin/system/setup/option=pro_category" {% if global.url contains 'option=pro_category' %}
style="color: #Fff;background: #0041E8;" {% endif %}
class="block p-[6px_16px] text-[#919699] hover:text-[#fff] hover:bg-[#0041E8] transition">
Danh mục sản phẩm
</a>
<a href="/admin/system/setup/option=product" {% if global.url contains 'option=product' %}
style="color: #Fff;background: #0041E8;" {% endif %}
class="block p-[6px_16px] text-[#919699] hover:text-[#fff] hover:bg-[#0041E8] transition">
Chi tiết sản phẩm
</a>
</div>
{% if global.url contains 'option=general' %}
{% include 'system/form_setup/general' %}
{% elsif global.url contains 'option=homepage' %}
{% include 'system/form_setup/homepage' %}
{% elsif global.url contains 'option=pro_category' %}
{% include 'system/form_setup/pro_category' %}
{% elsif global.url contains 'option=product' %}
{% include 'system/form_setup/product' %}
{% endif %}
</div>