-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add Guide section and move to it everything in the Articles section - Add custom template - Various minor changes
- Loading branch information
1 parent
a819ab8
commit 900f99d
Showing
11 changed files
with
101 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Tensors | ||
|
||
[work in progress] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Mathematics.NET Articles | ||
|
||
Welcome to Mathematics.NET. | ||
This section is dedicated to highlighting areas of math covered in this library. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,6 @@ | ||
- name: Introduction | ||
href: intro.md | ||
- name: Get Started | ||
- name: Differential Geometry | ||
items: | ||
- name: Installation | ||
href: get_started/installation.md | ||
- name: Fundamentals | ||
items: | ||
- name: Numeric Types | ||
href: fundamentals/numeric-types.md | ||
- name: Tensors | ||
href: differential_geometry/tensors.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Mathematics.NET Guide | ||
|
||
Welcome to Mathematics.NET. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- name: Introduction | ||
href: intro.md | ||
- name: Get Started | ||
items: | ||
- name: Installation | ||
href: get_started/installation.md | ||
- name: Fundamentals | ||
items: | ||
- name: Numeric Types | ||
href: fundamentals/numeric-types.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
:root, [data-bs-theme="dark"] { | ||
--bg-color-primary: #161616; | ||
--bg-color-secondary: #082424; | ||
} | ||
|
||
[data-bs-theme="light"] { | ||
--bg-color-primary: #e4e4e4; | ||
--bg-color-secondary: #b4f8f8; | ||
} | ||
|
||
header { | ||
--bs-border-width: 0px; | ||
} | ||
|
||
body { | ||
background-color: var(--bg-color-primary); | ||
} | ||
|
||
body > footer { | ||
display: flex; | ||
align-items: center; | ||
padding: 0rem; | ||
height: 3rem; | ||
} | ||
|
||
footer { | ||
background-color: var(--bg-color-secondary); | ||
font-size: 0.75rem; | ||
} | ||
|
||
footer.border-top{ | ||
border-top: 0px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
.bg-body { | ||
background-color: var(--bg-color-secondary); | ||
} | ||
|
||
.dropdown a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
.dropdown-menu[data-bs-popper] { | ||
background-color: var(--bg-color-secondary); | ||
margin-top: 1.125rem; | ||
} | ||
|
||
.dropdown-menu a:hover { | ||
text-decoration: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default { | ||
defaultTheme: 'dark', | ||
iconLinks: [ | ||
{ | ||
icon: 'github', | ||
href: 'https://github.com/HamletTanyavong/Mathematics.NET', | ||
title: 'GitHub' | ||
}, | ||
{ | ||
icon: 'heart', | ||
href: 'https://github.com/sponsors/HamletTanyavong', | ||
title: 'Sponsor' | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
- name: Guide | ||
href: guide/ | ||
- name: API | ||
href: api/ | ||
- name: Articles | ||
href: articles/ | ||
- name: Api Documentation | ||
href: api/ | ||
homepage: api/index.md |