-
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.
- Loading branch information
1 parent
088e1ba
commit 3152a76
Showing
7 changed files
with
81 additions
and
17 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
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
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
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,23 +1,51 @@ | ||
--- | ||
import type { Props } from '@astrojs/starlight/props'; | ||
import StarlightHead from '@astrojs/starlight/components/Head.astro'; | ||
import VtbotStarlight from 'astro-vtbot/components/starlight/Base.astro'; | ||
import LoadingIndicator from 'astro-vtbot/components/LoadingIndicator.astro'; | ||
import ProgressBar from 'astro-vtbot/components/ProgressBar.astro'; | ||
import type { Props } from "@astrojs/starlight/props"; | ||
import StarlightHead from "@astrojs/starlight/components/Head.astro"; | ||
import VtbotStarlight from "astro-vtbot/components/starlight/Base.astro"; | ||
import LoadingIndicator from "astro-vtbot/components/LoadingIndicator.astro"; | ||
import ProgressBar from "astro-vtbot/components/ProgressBar.astro"; | ||
--- | ||
|
||
<VtbotStarlight {...Astro.props}> | ||
<StarlightHead {...Astro.props}><slot /></StarlightHead> | ||
<StarlightHead {...Astro.props}><slot /></StarlightHead> | ||
</VtbotStarlight> | ||
<LoadingIndicator /> | ||
<ProgressBar /> | ||
|
||
<!-- <style is:global> | ||
html.loading { | ||
<style is:global lang="scss"> | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
img { | ||
transition: all 0.2s; | ||
border-radius: 100%; | ||
margin-left: 0.25rem; | ||
width: 1.6rem; | ||
display: inline-block !important; | ||
transform: translateY(0rem); | ||
} | ||
} | ||
|
||
html[data-theme="dark"] { | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
img { | ||
filter: invert(1); | ||
} | ||
} | ||
} | ||
/* html.loading { | ||
cursor: pointer; | ||
user-select: none; | ||
} | ||
html.loading * { | ||
pointer-events: none; | ||
} | ||
</style> --> | ||
} */ | ||
</style> |
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,13 @@ | ||
--- | ||
title: Introduction Developper | ||
description: Introduction for developpers | ||
sidebar: | ||
order: 0 | ||
--- | ||
|
||
Guides lead a user through a specific task they want to accomplish, often with a sequence of steps. | ||
Writing a good guide requires thinking about what your users are trying to do. | ||
|
||
## Further reading | ||
|
||
- Read [about how-to guides](https://diataxis.fr/how-to-guides/) in the Diátaxis framework |
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