no message

This commit is contained in:
hellcat 2026-02-12 14:53:52 +08:00
parent 68e875cf6e
commit a498c96e16
8 changed files with 5 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -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">

View File

@ -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>

View File

@ -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>