PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
themes
/
wowy
/
partials
<!DOCTYPE html> <html lang="{{ app()->getLocale() }}"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=5, user-scalable=1" name="viewport"/> <meta name="csrf-token" content="{{ csrf_token() }}"> <link href="https://fonts.googleapis.com/css?family={{ urlencode(theme_option('font_text', 'Poppins')) }}:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap" rel="stylesheet"> <link rel="stylesheet" href="{{ asset('assets/css/styles.css') }}"> <link rel="stylesheet" href="{{ asset('assets/css/owl.css') }}"> <style> :root { --font-text: {{ theme_option('font_text', 'Poppins') }}, sans-serif; --color-brand: {{ theme_option('color_brand', '#5897fb') }}; --color-brand-2: {{ theme_option('color_brand_2', '#3256e0') }}; --color-primary: {{ theme_option('color_primary', '#3f81eb') }}; --color-secondary: {{ theme_option('color_secondary', '#41506b') }}; --color-warning: {{ theme_option('color_warning', '#ffb300') }}; --color-danger: {{ theme_option('color_danger', '#ff3551') }}; --color-success: {{ theme_option('color_success', '#3ed092') }}; --color-info: {{ theme_option('color_info', '#18a1b7') }}; --color-text: {{ theme_option('color_text', '#4f5d77') }}; --color-heading: {{ theme_option('color_heading', '#222222') }}; --color-grey-1: {{ theme_option('color_grey_1', '#111111') }}; --color-grey-2: {{ theme_option('color_grey_2', '#242424') }}; --color-grey-4: {{ theme_option('color_grey_4', '#90908e') }}; --color-grey-9: {{ theme_option('color_grey_9', '#f4f5f9') }}; --color-muted: {{ theme_option('color_muted', '#8e8e90') }}; --color-body: {{ theme_option('color_body', '#4f5d77') }}; } </style> {!! Theme::header() !!} @php $headerStyle = theme_option('header_style') ?: ''; $page = Theme::get('page'); if ($page) { $headerStyle = $page->getMetaData('header_style', true) ?: $headerStyle; } $headerStyle = ($headerStyle && in_array($headerStyle, array_keys(get_layout_header_styles()))) ? $headerStyle : ''; $openBrowse = $page && $page->template == 'homepage' && $page->getMetaData('expanding_product_categories_on_the_homepage', true) == 'yes'; $cantCloseBrowse = $openBrowse && $headerStyle == 'header-style-2'; @endphp <link rel="stylesheet" href="{{ asset('assets/css/custom-style.css') }}"> <link rel="stylesheet" href="{{ asset('assets/css/responsive.css') }}"> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> </head> <body @if (BaseHelper::siteLanguageDirection() == 'rtl') dir="rtl" @endif class="@if (BaseHelper::siteLanguageDirection() == 'rtl') rtl @endif header_full_true wowy-template css_scrollbar lazy_icons btnt4_style_2 zoom_tp_2 css_scrollbar template-index wowy_toolbar_true hover_img2 swatch_style_rounded swatch_list_size_small label_style_rounded wrapper_full_width header_full_true header_sticky_true hide_scrolld_true des_header_3 h_banner_true top_bar_true prs_bordered_grid_1 search_pos_canvas lazyload @if (Theme::get('bodyClass')) {{ Theme::get('bodyClass') }} @endif"> {!! apply_filters(THEME_FRONT_BODY, null) !!} <div id="alert-container"></div> <div class="header__top__outer"> <div class="container"> <div class="header_row"> @if (theme_option('social_links')) <ul class="header-social"> @foreach(json_decode(theme_option('social_links'), true) as $socialLink) <li> <a href="{{ $socialLink[2]['value'] }}" title="{{ $socialLink[0]['value'] }}" target="_blank"> <div class="color-rounded-icon"> <i class="ico__box"> <i class="{{ $socialLink[1]['value'] }}" style="color: #005186"></i> </i> </div> </a> </li> @endforeach </ul> @endif @if (theme_option('hotline')) <ul class="header-info d-none d-sm-block"> <li> <span><img src="{{ asset('assets/assets/new_images/mail.png') }}"></span> <a href="mailto:{{ theme_option('hotline') }}">{{ theme_option('hotline') }}</a> </li> </ul> @endif </div> </div> </div> <nav class="navbar navbar-expand-lg navbar__top"> <div class="container"> @if (theme_option('logo_light')) <a href="{{ route('public.index') }}" class="navbar-brand navbar__brand"> <img src="{{ RvMedia::getImageUrl(theme_option('logo_light')) }}" alt="{{ theme_option('site_title') }}"> </a> @endif <button class="navbar-toggler navbar-toggler-right hamburger__menu order-2" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="menu"></span></button> <div class="collapse navbar-collapse justify-content-between navbar__collapse" id="navbarSupportedContent"> {!! Menu::renderMenuLocation('main-menu', [ 'view' => 'main-menu', ]) !!} {!! Menu::renderMenuLocation('header-menu', [ 'view' => 'main-menu', ]) !!} </div> <div class="user__wrapp"> <a class="cart__wrapp mini-cart-icon" href="{{ route('public.cart') }}"> <img src="{{ asset('assets/assets/new_images/head-shop-icon.png') }}"> <span class="badge">{{ Cart::instance('cart')->count() }}</span> </a> <a class="user__account" href="{{ route('customer.login') }}"> <img src="{{ asset('assets/assets/new_images/login.png') }}"> </a> </div> </div> </nav>
[-] main-menu.blade.php
[edit]
[-] header.blade.php
[edit]
[-] sidebar.blade.php
[edit]
[+]
..
[-] facebook-integration.blade.php
[edit]
[-] quick-view.blade.php
[edit]
[-] mobile-menu.blade.php
[edit]
[-] footer.blade.php
[edit]
[-] comments.blade.php
[edit]
[-] additional-simple-slider-fields.blade.php
[edit]
[-] product-category-fields.blade.php
[edit]
[-] flash-sale-product.blade.php
[edit]
[-] additional-product-fields.blade.php
[edit]
[+]
shortcodes
[-] breadcrumb.blade.php
[edit]
[+]
forms
[-] cart-panel.blade.php
[edit]
[-] ajax-search-results.blade.php
[edit]
[-] language-switcher.blade.php
[edit]
[-] quick-shop.blade.php
[edit]
[-] custom-pagination.blade.php
[edit]
[-] blog-post-fields.blade.php
[edit]
[-] additional-page-fields.blade.php
[edit]