-
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.
🎯 feats: Implementação de um sistema de nested routes para site da In…
…foDocs
- Loading branch information
1 parent
99337a7
commit 2e15b0f
Showing
3 changed files
with
84 additions
and
11 deletions.
There are no files selected for viewing
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,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>$TITLE</title> | ||
<meta name="theme-color" content="COLOR"> | ||
<meta charset="utf-8"> | ||
<meta property="og:url" content="URL"> | ||
<meta property="og:type" content="website"> | ||
<meta property="og:title" content="TITLE"> | ||
<meta property="og:image" content="IMAGE"> | ||
<meta property="og:description" content="DESCRIPTION"> | ||
<script> | ||
window.location.replace("NESTED-ROUTE"); | ||
</script> | ||
<style> | ||
* { | ||
margin: 0; | ||
border: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
width: 100vw; | ||
width: 100dvw; | ||
|
||
height: 100vh; | ||
height: 100dvh; | ||
|
||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
background-color: COLOR; | ||
} | ||
</style> | ||
</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