update marketing page
This commit is contained in:
@@ -22,6 +22,7 @@
|
||||
<script src="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js"></script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{{ global|show_var }}
|
||||
{{ page|show_var }}
|
||||
@@ -36,7 +37,7 @@
|
||||
<a href="" class="menu-logo">
|
||||
<img src="{{ 'logo.png' | asset_url }}" />
|
||||
</a>
|
||||
|
||||
|
||||
<div class="menu-list">
|
||||
<a href="/" class="item">
|
||||
<i class="icons icon-home"></i>
|
||||
@@ -47,7 +48,7 @@
|
||||
{% assign _type = _category[0] %}
|
||||
{% assign _menuArray = _category[1].menu %}
|
||||
{% if _category[1].enable == 1 %}
|
||||
<details {% if _type == global.module %} open {% endif %}>
|
||||
<details {% if _type==global.module %} open {% endif %}>
|
||||
<summary class="item">
|
||||
<div class="flex items-center">
|
||||
|
||||
@@ -73,7 +74,7 @@
|
||||
|
||||
<div class="sub-menu">
|
||||
{% for _item in _menuArray %}
|
||||
<a href="{{ _item.url }}" {% if _item.view == global.view and _item.module == global.module %}
|
||||
<a href="{{ _item.url }}" {% if _item.view==global.view and _item.module==global.module %}
|
||||
class="current" {% endif %}> {{ _item.name }} </a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
@@ -108,9 +109,11 @@
|
||||
</div>
|
||||
|
||||
<!-- Menu collapse -->
|
||||
<div class="admin-menu box-menu fixed top-0 bg-[#004E99] flex flex-col justify-between pb-[20px] min-h-[100vh]" id="js-menu-small">
|
||||
<div class="admin-menu box-menu fixed top-0 bg-[#004E99] flex flex-col justify-between pb-[20px] min-h-[100vh]"
|
||||
id="js-menu-small">
|
||||
<div>
|
||||
<div class="logo item items-center justify-center border-[rgba(255,255,255,0.15)] border-b p-[20px_0_!important]">
|
||||
<div
|
||||
class="logo item items-center justify-center border-[rgba(255,255,255,0.15)] border-b p-[20px_0_!important]">
|
||||
<a href="/" class="">
|
||||
<img src="{{ 'logo_small.png' | asset_url }}" alt="">
|
||||
</a>
|
||||
@@ -133,7 +136,8 @@
|
||||
{% assign _menuArray = _category[1].menu %}
|
||||
|
||||
{% if _category[1].enable == 1 %}
|
||||
<div class="item {% if _type == 'system' %} border-[rgba(255,255,255,0.15)] border-b{% endif %} {% if _type == global.module %} current {% endif %}">
|
||||
<div
|
||||
class="item {% if _type == 'system' %} border-[rgba(255,255,255,0.15)] border-b{% endif %} {% if _type == global.module %} current {% endif %}">
|
||||
{% if _type == 'order' %} <i class="icons icon-sell"> </i>
|
||||
{% elsif _type == 'product' %} <i class="icons icon-product"> </i>
|
||||
{% elsif _type == 'customer' %}<i class="icons icon-user"> </i>
|
||||
@@ -153,7 +157,7 @@
|
||||
|
||||
<div class="menu-list">
|
||||
{% for _item in _menuArray %}
|
||||
<a href="{{ _item.url }}" {% if _item.view == global.view %} class="current" {% endif %}>
|
||||
<a href="{{ _item.url }}" {% if _item.view==global.view %} class="current" {% endif %}>
|
||||
{{ _item.name }}
|
||||
</a>
|
||||
{% endfor %}
|
||||
@@ -176,7 +180,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="item">
|
||||
<a href="" class="icons icon-support"> </a>
|
||||
|
||||
@@ -216,16 +220,25 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="admin-content-container ml-[50px]" id="js-admin-content-container">
|
||||
<!-- Header -->
|
||||
<div class="admin-header-container flex items-center justify-between bg-white px-4 py-3">
|
||||
<form class="max-w-[420px] relative w-[100%] menu-hide" id="js-form-search">
|
||||
<div class="absolute inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
||||
<i class="icons icon-search"></i>
|
||||
<div class="content w-[100%] flex items-center border rounded-[5px]">
|
||||
<div class="inset-y-0 start-0 flex items-center ps-3 pointer-events-none">
|
||||
<i class="icons icon-search"></i>
|
||||
</div>
|
||||
|
||||
<input type="search" class="block h-[36px] rounded w-full" id="js-input-search"
|
||||
placeholder="Tìm kiếm">
|
||||
</div>
|
||||
|
||||
<div class="autocomplete-suggestions absolute bg-white p-[5px] w-[100%] shadow-[0_2px_7px_0_rgb(177_177_177)] hidden"
|
||||
id="js-show-search">
|
||||
|
||||
</div>
|
||||
|
||||
<input type="search" class="block border h-[36px] ps-10 rounded w-full" placeholder="Tìm kiếm">
|
||||
</form>
|
||||
|
||||
<div class="admin-header-right flex items-center justify-end">
|
||||
|
||||
Reference in New Issue
Block a user