File tree Expand file tree Collapse file tree 3 files changed +47
-28
lines changed Expand file tree Collapse file tree 3 files changed +47
-28
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import {
19
19
cilCheckCircle ,
20
20
cilCloudDownload ,
21
21
cilContrast ,
22
+ cilHandshake ,
22
23
cilInfo ,
23
24
cilMenu ,
24
25
cilMoon ,
@@ -46,6 +47,7 @@ export const icons = {
46
47
cilCheckCircle,
47
48
cilCloudDownload,
48
49
cilContrast,
50
+ cilHandshake,
49
51
cilInfo,
50
52
cilMenu,
51
53
cilMoon,
Original file line number Diff line number Diff line change 26
26
</CDropdownToggle >
27
27
<CDropdownMenu >
28
28
<CDropdownItem
29
+ :active =" theme === 'light'"
29
30
class =" d-flex align-items-center"
30
31
component =" button"
31
32
type =" button"
34
35
<CIcon class =" me-2" icon =" cil-sun" size =" lg" /> Light
35
36
</CDropdownItem >
36
37
<CDropdownItem
38
+ :active =" theme === 'dark'"
37
39
class =" d-flex align-items-center"
38
40
component =" button"
39 41
type =" button"
42
44
<CIcon class =" me-2" icon =" cil-moon" size =" lg" /> Dark
43
45
</CDropdownItem >
44
46
<CDropdownItem
47
+ :active =" theme === 'auto'"
45
48
class =" d-flex align-items-center"
46
49
component =" button"
47
50
type =" button"
65
68
>
66
69
<CIcon icon =" cil-cloud-download" /> Download
67
70
</CButton >
71
+ <CButton
72
+ class =" d-lg-inline-block my-2 my-md-0 ms-md-3"
73
+ color =" primary"
74
+ href =" https://coreui.io/about/services/?docs=coreui-header-button"
75
+ variant =" outline"
76
+ >
77
+ <CIcon class =" me-2" icon =" cil-handshake" /> Hire Us
78
+ </CButton >
68
79
<CButton
69
80
class =" d-lg-inline-block my-2 my-md-0 ms-md-3"
70
81
color =" primary"
Original file line number Diff line number Diff line change 10
10
<Header
11
11
:theme =" storedTheme"
12
12
@toggle-sidebar =" toggleSidebar(!isSidebarOpen)"
13
- @toggle-color-mode =" (theme) => {setTheme(theme)}"
13
+ @toggle-color-mode ="
14
+ (theme) => {
15
+ setTheme(theme)
16
+ }
17
+ "
14
18
/>
15
19
<div class =" body flex-grow-1 px-3" >
16
20
<CContainer lg >
17
- <Home v-if =" frontmatter.home" />
18
- <Transition
19
- v-else
20
- name =" fade-slide-y"
21
- mode =" out-in"
22
- @before-enter =" onBeforeEnter"
23
- @before-leave =" onBeforeLeave"
24
- >
25
- <CRow >
26
- <CCol :lg =" 9" >
27
- <Page :key =" page.path" >
28
- <template #top >
29
- <slot name =" page-top" />
30
- </template >
31
- <template #bottom >
32
- <slot name =" page-bottom" />
33
- </template >
34
- </Page >
35
- </CCol >
36
- <CCol :lg =" 3" >
37
- <div class =" docs-toc text-muted" >
38
- <strong class =" d-block h6 mb-2 pb-2 border-bottom" >On this page</strong >
39
- <Toc />
40
- </div >
41
- </CCol >
42
- </CRow >
43
- </Transition >
21
+ <main class =" docs-main" >
22
+ <Home v-if =" frontmatter.home" />
23
+ <Transition
24
+ v-else
25
+ name =" fade-slide-y"
26
+ mode =" out-in"
27
+ @before-enter =" onBeforeEnter"
28
+ @before-leave =" onBeforeLeave"
29
+ >
30
+ <CRow >
31
+ <CCol :lg =" 9" >
32
+ <Page :key =" page.path" >
33
+ <template #top >
34
+ <slot name =" page-top" />
35
+ </template >
36
+ <template #bottom >
37
+ <slot name =" page-bottom" />
38
+ </template >
39
+ </Page >
40
+ </CCol >
41
+ <CCol :lg =" 3" >
42
+ <div class =" docs-toc text-muted" >
43
+ <strong class =" d-block h6 mb-2 pb-2 border-bottom" >On this page</strong >
44
+ <Toc />
45
+ </div >
46
+ </CCol >
47
+ </CRow >
48
+ </Transition >
49
+ </main >
44
50
</CContainer >
45
51
</div >
46
52
<Footer />
You can’t perform that action at this time.
0 commit comments