소스 검색

update: ui

tokumeikoi 3 년 전
부모
커밋
4ef5a4ca81
3개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 0 0
      public/theme/v2board/assets/umi.js
  2. 1 0
      public/theme/v2board/dashboard.blade.php
  3. 1 0
      routes/web.php

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
public/theme/v2board/assets/umi.js


+ 1 - 0
public/theme/v2board/dashboard.blade.php

@@ -23,6 +23,7 @@
     <script>
         window.settings = {
             title: '{{$title}}',
+            theme_path: '{{$theme_path}}',
             theme: {
                 sidebar: '{{$theme_sidebar}}',
                 header: '{{$theme_header}}',

+ 1 - 0
routes/web.php

@@ -22,6 +22,7 @@ Route::get('/', function (Request $request) {
     $renderParams = [
         'title' => config('v2board.app_name', 'V2Board'),
         'theme' => config('v2board.frontend_theme', 'v2board'),
+        'theme_path' => '/theme/' . config('v2board.frontend_theme', 'v2board') . '/assets/',
         'theme_sidebar' => config('v2board.frontend_theme_sidebar', 'light'),
         'theme_header' => config('v2board.frontend_theme_header', 'dark'),
         'theme_color' => config('v2board.frontend_theme_color', 'default'),

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.