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'),
|
||||
'sSlug' => '',
|
||||
'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">
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
<nav class="navbar navbar-expand-xl shadow" id="header">
|
||||
<div class="container">
|
||||
<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"
|
||||
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"
|
||||
alt="{{ config('app.name') }}">
|
||||
</a>
|
||||
|
||||
@ -27,12 +27,12 @@
|
||||
|
||||
@isset($oCategory->aBanner)
|
||||
@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
|
||||
|
||||
<div class="list-cover rounded mb-3">
|
||||
<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>
|
||||
</div>
|
||||
|
||||