no message
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 117 KiB After Width: | Height: | Size: 117 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |
@ -6,7 +6,7 @@
|
|||||||
'sKeywords' => config('app.keywords'),
|
'sKeywords' => config('app.keywords'),
|
||||||
'sSlug' => '',
|
'sSlug' => '',
|
||||||
'sOgType' => 'website',
|
'sOgType' => 'website',
|
||||||
'sOgImg' => 'public/sites/'.config("app.site_code_short").'/siteimg.jpg',
|
'sOgImg' => 'sites/'.config("app.site_code_short").'/siteimg.jpg',
|
||||||
])
|
])
|
||||||
|
|
||||||
<html lang="zh-CN">
|
<html lang="zh-CN">
|
||||||
|
|||||||
@ -2,10 +2,10 @@
|
|||||||
<nav class="navbar navbar-expand-xl shadow" id="header">
|
<nav class="navbar navbar-expand-xl shadow" id="header">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a href="/" rel="home" class="logo navbar-brand order-2 order-xl-1">
|
<a href="/" rel="home" class="logo navbar-brand order-2 order-xl-1">
|
||||||
<img style="border-radius:8px;" src="{{ Vite::asset('resources/sites/' . config('app.site_code_short') . '/images/logo/logo.png') }}"
|
<img style="border-radius:8px;" src="sites/{{ config('app.site_code_short') }}/images/logo/logo.png"
|
||||||
class="d-inline-block logo-light nc-no-lazy"
|
class="d-inline-block logo-light nc-no-lazy"
|
||||||
alt="{{ config('app.name') }}">
|
alt="{{ config('app.name') }}">
|
||||||
<img style="border-radius:8px;" src="{{ Vite::asset('resources/sites/' . config('app.site_code_short') . '/images/logo/logo.png') }}"
|
<img style="border-radius:8px;" src="sites/{{ config('app.site_code_short') }}/images/logo/logo.png"
|
||||||
class="d-none logo-dark nc-no-lazy"
|
class="d-none logo-dark nc-no-lazy"
|
||||||
alt="{{ config('app.name') }}">
|
alt="{{ config('app.name') }}">
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@ -27,12 +27,12 @@
|
|||||||
|
|
||||||
@isset($oCategory->aBanner)
|
@isset($oCategory->aBanner)
|
||||||
@php
|
@php
|
||||||
$sBannerPath = 'resources/sites/' . config('app.site_code_short') . '/images/banner/' . $oCategory->aBanner['img_file'];
|
$sBannerPath = 'sites/' . config('app.site_code_short') . '/images/banner/' . $oCategory->aBanner['img_file'];
|
||||||
@endphp
|
@endphp
|
||||||
|
|
||||||
<div class="list-cover rounded mb-3">
|
<div class="list-cover rounded mb-3">
|
||||||
<div class="media media-21x9">
|
<div class="media media-21x9">
|
||||||
<div class="media-content" style="background-image:url({{ Vite::asset($sBannerPath) }}); background-position: center {{ $oCategory->aBanner['img_top'] }};">
|
<div class="media-content" style="background-image:url({{ $sBannerPath }}); background-position: center {{ $oCategory->aBanner['img_top'] }};">
|
||||||
<div class="overlay-grad"></div>
|
<div class="overlay-grad"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||