This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from diamantdotdev/beta
1.3 Release !
- Loading branch information
Showing
47 changed files
with
923 additions
and
222 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 |
---|---|---|
@@ -1,42 +1,58 @@ | ||
<html> | ||
<head> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" | ||
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" | ||
crossorigin="anonymous" | ||
referrerpolicy="no-referrer" | ||
/> | ||
<link rel="manifest" href="./manifest.webmanifest" id="manifest" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
|
||
<title>What Pokémon are you today ?</title> | ||
<meta name="title" content="What Pokémon are you today ?"> | ||
<meta name="description" content="Discover what Pokemon you are today."> | ||
|
||
<meta property="og:type" content="website"> | ||
<meta property="og:url" content="https://wpayt.diams.app"> | ||
<meta property="og:title" content="What Pokémon are you today ?"> | ||
<meta property="og:description" content="Discover what Pokemon you are today."> | ||
<meta property="og:image" content="./src/card.png"> | ||
|
||
<meta property="twitter:card" content="summary_large_image"> | ||
<meta property="twitter:url" content="https://wpayt.diams.app"> | ||
<meta property="twitter:title" content="What Pokémon are you today ?"> | ||
<meta property="twitter:description" content="Discover what Pokemon you are today."> | ||
<meta property="twitter:image" content="./src/card.png"> | ||
<meta name="title" content="What Pokémon are you today ?" /> | ||
<meta name="description" content="Discover what Pokemon you are today." /> | ||
|
||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://wpayt.diams.app" /> | ||
<meta property="og:title" content="What Pokémon are you today ?" /> | ||
<meta | ||
property="og:description" | ||
content="Discover what Pokemon you are today." | ||
/> | ||
<meta property="og:image" content="./src/images/card.png" /> | ||
|
||
<meta property="twitter:card" content="summary_large_image" /> | ||
<meta property="twitter:url" content="https://wpayt.diams.app" /> | ||
<meta property="twitter:title" content="What Pokémon are you today ?" /> | ||
<meta | ||
property="twitter:description" | ||
content="Discover what Pokemon you are today." | ||
/> | ||
<meta property="twitter:image" content="./src/images/card.png" /> | ||
|
||
<meta charset="UTF-8" /> | ||
<link rel="stylesheet" href="src/style.scss" /> | ||
<link rel="stylesheet" href="src/scss/style.scss" /> | ||
<link | ||
rel="shortcut icon" | ||
href="./src/icon.png" | ||
href="./src/images/icon.png" | ||
crossorigin="anonymous" | ||
type="image/PNG" | ||
class="icon" | ||
/> | ||
</head> | ||
|
||
<body> | ||
<div> | ||
<h1>Hello,</h1> | ||
<p>You are <span id=a></span> <span id="poke"></span> today.</p> | ||
<p class="footer">Made with <i class="fas fa-heart"></i> by <a href="https://diamant.dev" target="_blank" rel="noopener noreferrer">Diamant</a>. - <a id="tweet" href="#" hidden target="_blank">Share on twitter.</a></p> | ||
<div class="day"> | ||
<div> | ||
<h1 id="hello"></h1> | ||
<p id="you"></p> | ||
<p class="footer"></p> | ||
</div> | ||
<div><img id="sprite" src="#" alt="" crossorigin="anonymous" /></div> | ||
</div> | ||
<div><img src="#" alt="" crossorigin="anonymous" /></div> | ||
|
||
<script src="src/index.ts"></script> | ||
<div class="history"></div> | ||
<script src="src/ts/index.ts"></script> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "What Pokemon Are You today ?", | ||
"short_name": "WPAYT ?", | ||
"theme_color": "#242424", | ||
"background_color": "#ffffff", | ||
"display": "minimal-ui", | ||
"scope": "/", | ||
"start_url": "/", | ||
"icons": [ | ||
{ | ||
"src": "src/images/icons/manifest-icon-192.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "maskable any" | ||
}, | ||
{ | ||
"src": "src/images/icons/manifest-icon-512.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "maskable any" | ||
} | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
Oops, something went wrong.
e187eac
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs: