-
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken doc link on "Read More" button on SQLite driver dependency…
- Loading branch information
1 parent
2d9f934
commit e29275b
Showing
4 changed files
with
30 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
import * as CONFIG from '../config'; | ||
type Props = { | ||
frontmatter: CONFIG.Frontmatter; | ||
}; | ||
const { frontmatter } = Astro.props as Props; | ||
--- | ||
|
||
<html dir={frontmatter.dir ?? 'ltr'} lang={frontmatter.lang ?? 'en-us'} class="initial"> | ||
<head> | ||
{frontmatter.redirect ? ( | ||
<meta | ||
http-equiv="refresh" | ||
content={ `0; url=${ frontmatter.redirect }` } | ||
/> | ||
) : null} | ||
</head> | ||
|
||
<body> | ||
</body> | ||
</html> |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
title: SQLite redirect page for Read More button of Dependency Manager dialog | ||
layout: ../../../layouts/Redirect.astro | ||
redirect: sq-lite | ||
--- |