-
Notifications
You must be signed in to change notification settings - Fork 5
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
b078a32
commit 9822cac
Showing
8 changed files
with
61 additions
and
72 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 @@ | ||
--- | ||
title: For Red Hatters | ||
description: Information for Red Hatters about using Kessel. | ||
--- | ||
|
||
Kessel is an open source project also deployed internally. To learn more about leveraging Kessel | ||
internally please see one of these documentation mirrors based on preferred auth method: | ||
|
||
- GitHub auth: https://project-kessel.github.io/docs-internal | ||
- VPN auth: https://project-kessel.pages.redhat.com/docs-internal |
This file was deleted.
Oops, something went wrong.
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,46 +1,18 @@ | ||
--- | ||
title: Welcome to Starlight | ||
title: Kessel Documentation | ||
description: Get started building your docs site with Starlight. | ||
template: splash | ||
hero: | ||
title: | | ||
Welcome to Starlight with | ||
<span | ||
class="font-black text-transparent | ||
bg-clip-text bg-gradient-to-b | ||
from-accent-700 to-accent-400 | ||
dark:from-accent-500 dark:to-accent-200" | ||
> | ||
Tailwind | ||
</span> | ||
tagline: Congrats on setting up a new Starlight project! | ||
image: | ||
file: ../../assets/houston.webp | ||
Kessel | ||
tagline: Open source, multi-app, B2B access and policy management. | ||
actions: | ||
- text: Example Guide | ||
link: ./guides/example/ | ||
- text: For Red Hatters | ||
|
||
link: ./for-red-hatters/ | ||
icon: right-arrow | ||
variant: primary | ||
- text: Read the Starlight docs | ||
link: https://starlight.astro.build | ||
icon: external | ||
- text: More coming soon! | ||
link: ./start-here/coming-soon/ | ||
variant: secondary | ||
--- | ||
|
||
import { Card, CardGrid } from '@astrojs/starlight/components'; | ||
|
||
## Next steps | ||
|
||
<CardGrid stagger> | ||
<Card title="Update content" icon="pencil"> | ||
Edit `src/content/docs/index.mdx` to see this page change. | ||
</Card> | ||
<Card title="Add new content" icon="add-document"> | ||
Add Markdown or MDX files to `src/content/docs` to create new pages. | ||
</Card> | ||
<Card title="Configure your site" icon="setting"> | ||
Edit your `sidebar` and other config in `astro.config.mjs`. | ||
</Card> | ||
<Card title="Read the docs" icon="open-book"> | ||
Learn more in [the Starlight Docs](https://starlight.astro.build/). | ||
</Card> | ||
</CardGrid> |
This file was deleted.
Oops, something went wrong.
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,6 @@ | ||
--- | ||
title: Coming soon | ||
description: Coming soon | ||
--- | ||
|
||
Coming soon. |
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,16 @@ | ||
/* | ||
* Use custom css only in exceptional circumstances. | ||
* Like adding cute hats where it is otherwise not possible. | ||
*/ | ||
|
||
.red-hat::after { | ||
content: ""; | ||
display: inline-block; | ||
width: 24px; | ||
height: 24px; | ||
background-image: url('assets/redhat.svg'); | ||
background-size: contain; | ||
background-repeat: no-repeat;; | ||
margin-left: 5px; | ||
vertical-align: middle; | ||
} |