Commit e5f95f1 1 parent 180db76 commit e5f95f1 Copy full SHA for e5f95f1
File tree 7 files changed +10
-9
lines changed
src/BootstrapBlazor.Server
7 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 18
18
<a class =" nav-link" href =" components" >@ComponentsText </a >
19
19
</li >
20
20
<li class =" nav-item" >
21
- <a class =" nav-link" href =" practice" >实战 </a >
21
+ <a class =" nav-link" href =" practice" >@TutorialsText </a >
22
22
</li >
23
23
</ul >
24
24
</div >
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ public partial class Header
35
35
[ NotNull ]
36
36
private string ? DownloadText { get ; set ; }
37
37
38
+ [ NotNull ]
39
+ private string ? TutorialsText { get ; set ; }
40
+
38
41
private string DownloadUrl => $ "{ WebsiteOption . CurrentValue . GiteeRepositoryUrl } /repository/archive/main.zip";
39
42
40
43
private string _versionString = "" ;
@@ -50,7 +53,7 @@ protected override void OnInitialized()
50
53
HomeText ??= Localizer [ nameof ( HomeText ) ] ;
51
54
IntroductionText ??= Localizer [ nameof ( IntroductionText ) ] ;
52
55
ComponentsText ??= Localizer [ nameof ( ComponentsText ) ] ;
53
-
56
+ TutorialsText ??= Localizer [ nameof ( TutorialsText ) ] ;
54
57
_versionString = $ "v{ PackageVersionService . Version } ";
55
58
}
56
59
}
Original file line number Diff line number Diff line change 1
1
@inherits ComponentBase
2
2
3
- <div class =" btn btn-circle btn-fade btn-theme-mode icon-theme d-flex d-sm -none" >
3
+ <div class =" btn btn-circle btn-fade btn-theme-mode icon-theme d-flex d-lg -none" >
4
4
<img src =" ./images/theme-light.svg" class =" icon-light" />
5
5
<img src =" ./images/theme-night.svg" class =" icon-dark" />
6
6
</div >
Original file line number Diff line number Diff line change 70
70
</div >
71
71
<div class =" d-flex flex-fill align-items-center justify-content-center" >
72
72
<a class =" d-none d-md-block me-3" href =" @WebsiteOption.CurrentValue.GiteeRepositoryUrl" target =" _blank" >@Localizer ["Footer"]</a >
73
- <div class =" d-none d-lg-block me-3" >
74
- <img alt =" 12377@2x" class =" footer-logo me-1" src =" ./images/12377@2x.png" >
75
- <a href =" https://12377.cn" target =" _blank" >违法和不良信息举报中心</a >
76
- </div >
77
73
<a class =" d-none d-lg-block me-3" href =" https://beian.miit.gov.cn/" target =" _blank" >苏ICP备16047547号-2</a >
78
74
</div >
79
75
<div class =" d-md-flex d-none" >
Original file line number Diff line number Diff line change 4299
4299
"DownloadText" : " Download" ,
4300
4300
"HomeText" : " Home" ,
4301
4301
"ComponentsText" : " Components" ,
4302
- "IntroductionText" : " Documents"
4302
+ "IntroductionText" : " Documents" ,
4303
+ "TutorialsText" : " Tutorials"
4303
4304
},
4304
4305
"BootstrapBlazor.Server.Components.Layout.BaseLayout" : {
4305
4306
"FlowText" : " Workflow" ,
Original file line number Diff line number Diff line change 4299
4299
"DownloadText" : " Download" ,
4300
4300
"HomeText" : " 首页" ,
4301
4301
"ComponentsText" : " 组件" ,
4302
- "IntroductionText" : " 文档"
4302
+ "IntroductionText" : " 文档" ,
4303
+ "TutorialsText" : " 实战"
4303
4304
},
4304
4305
"BootstrapBlazor.Server.Components.Layout.BaseLayout" : {
4305
4306
"FlowText" : " 工作流" ,
You can’t perform that action at this time.
0 commit comments