-
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
0 parents
commit 6aa4550
Showing
28 changed files
with
470 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
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,56 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" href="/favicon.ico" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Ramen</title> | ||
<script> | ||
(function () { | ||
const basePath = '/'; | ||
const url = new URL(location.href); | ||
|
||
if (!url.pathname.startsWith(basePath)) { | ||
const link = document.createElement('link'); | ||
|
||
link.rel = 'stylesheet'; | ||
link.href = 'https://cdn.simplecss.org/simple.min.css'; | ||
|
||
document.head.appendChild(link); | ||
|
||
return; | ||
} | ||
|
||
const queryParameters = {}; | ||
|
||
url.searchParams.forEach((value, key) => (queryParameters[key] = value)); | ||
|
||
localStorage.setItem( | ||
'static-404-redirect', | ||
JSON.stringify({ | ||
path: url.pathname.substring(basePath.length - 1), | ||
hash: url.hash, | ||
query: queryParameters, | ||
}) | ||
); | ||
|
||
location.href = basePath; | ||
})(); | ||
</script> | ||
|
||
<style> | ||
body { | ||
width: 100vw; | ||
height: 100vh; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>404 | Page not found</h1> | ||
<a href="/">go home</a> | ||
</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 @@ | ||
ramen.noeldemartin.com |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 @@ | ||
{"@context":"https://www.w3.org/ns/solid/oidc-context.jsonld","client_id":"https://ramen.noeldemartin.com/clientid.jsonld","client_name":"Ramen","redirect_uris":["https://ramen.noeldemartin.com/"],"client_uri":"https://ramen.noeldemartin.com/","scope":"openid profile offline_access webid","grant_types":["refresh_token","authorization_code"],"response_types":["code"],"logo_uri":"https://ramen.noeldemartin.com/android-chrome-512x512.png"} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,77 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" class="h-full w-full"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Ramen</title> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" /> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" /> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" /> | ||
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#da532c" /> | ||
|
||
|
||
<meta name="apple-mobile-web-app-title" content="Ramen" /> | ||
<meta name="application-name" content="Ramen" /> | ||
<meta name="msapplication-TileColor" content="#da532c" /> | ||
<meta name="theme-color" content="#da532c" /> | ||
<meta property="og:title" content="Ramen" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="https://ramen.noeldemartin.com" /> | ||
|
||
<meta property="og:description" content="Can you make Ramen? Let's find out!" /> | ||
<meta name="description" content="Can you make Ramen? Let's find out!" /> | ||
|
||
|
||
|
||
<style>#splash { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
opacity: 0; | ||
background: rgb(254 252 232); /* bg-yellow-50 */ | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100vw; | ||
height: 100vh; | ||
z-index: 99999; | ||
transition: opacity 600ms ease-in-out; | ||
} | ||
|
||
#splash svg { | ||
width: 100px; | ||
height: 100px; | ||
animation: spin 3s linear infinite; | ||
} | ||
|
||
@keyframes spin { | ||
from { | ||
transform: rotate(0deg); | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
</style> | ||
<script type="module" crossorigin src="/assets/index-b99b80b7.js"></script> | ||
<link rel="stylesheet" href="/assets/index-00d6fe11.css"> | ||
<link rel="manifest" href="/manifest.webmanifest"><script id="vite-plugin-pwa:register-sw" src="/registerSW.js"></script></head> | ||
<body class="h-full w-full text-base font-normal leading-tight text-gray-900 antialiased"> | ||
<div id="splash"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill="#E1E8ED" d="M22.235 35.662c-.418 0-.83-.123-1.182-.361l-2.96-2.007-2.959 2.007a2.12 2.12 0 0 1-1.73.289 2.1 2.1 0 0 1-1.351-1.113l-1.721-2.393-3.405-.568a2.111 2.111 0 0 1-2.256-2.254l.256-3.567-3.215-1.56a2.106 2.106 0 0 1-1.116-1.353 2.106 2.106 0 0 1 .291-1.729l1.152-2.928-1.152-2.991a2.108 2.108 0 0 1 .825-3.08l3.215-1.561-.254-3.564a2.106 2.106 0 0 1 .614-1.642 2.104 2.104 0 0 1 1.642-.614l3.28-.506 1.846-2.452a2.107 2.107 0 0 1 3.081-.826l2.959 2.005 2.96-2.005a2.103 2.103 0 0 1 1.727-.29 2.109 2.109 0 0 1 1.354 1.116L26 4.042l3.262.631c.048-.004.1-.004.149-.004a2.108 2.108 0 0 1 2.105 2.26l-.26 3.565 3.221 1.561c.551.267.957.761 1.113 1.351a2.107 2.107 0 0 1-.289 1.729l-.926 2.908.926 3.011c.344.508.447 1.138.289 1.729a2.096 2.096 0 0 1-1.113 1.353l-3.221 1.56.26 3.567a2.123 2.123 0 0 1-.612 1.642 2.119 2.119 0 0 1-1.642.612l-3.22.526-1.908 2.435a2.095 2.095 0 0 1-1.899 1.184z"/><path fill="#D372B8" d="M18.5 28.709c-3.708.041-8.167-2.875-7.792-8.37.133-1.959.903-3.779 2.341-5.116a6.308 6.308 0 0 1 8.903.324 5.39 5.39 0 0 1 1.447 3.891 5.38 5.38 0 0 1-1.727 3.774 4.635 4.635 0 0 1-3.365 1.253 4.663 4.663 0 0 1-3.266-1.495c-.785-.844-1.059-2.045-.733-3.214.331-1.188 1.219-2.095 2.375-2.425.532-.151 1.123-.236 1.275.294.152.531-.38.757-1.083 1.25-.833.584-1.292 1.667-.368 2.733.471.544 1.155.831 1.874.857a2.681 2.681 0 0 0 1.931-.719 3.402 3.402 0 0 0 1.09-2.383 3.406 3.406 0 0 0-.914-2.456 4.305 4.305 0 0 0-6.077-.221 5.317 5.317 0 0 0-1.704 3.724 5.315 5.315 0 0 0 1.428 3.838 6.563 6.563 0 0 0 4.6 2.104 6.537 6.537 0 0 0 4.74-1.765 8.064 8.064 0 0 0 2.585-5.649 8.064 8.064 0 0 0-2.167-5.822c-3.725-4.008-8.601-4.952-13.643-1.91-.763.463-1.401 1.139-1.833.794-.208-.167-.314-.481.09-.857 4.815-4.478 12.376-4.201 16.851.614 1.84 1.979 2.919 4.562 2.7 7.257-.683 8.403-6.558 9.861-9.558 9.695z"/></svg> | ||
</div> | ||
<div id="app" class="loading h-full"></div> | ||
|
||
<script> | ||
setTimeout(function() { | ||
if (!document.querySelector('#app.loading')) { | ||
return; | ||
} | ||
|
||
document.getElementById('splash').style.opacity = 1; | ||
}, 1000); | ||
</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 @@ | ||
{"name":"Ramen","short_name":"Ramen","start_url":"/","display":"standalone","background_color":"#ffffff","lang":"en","scope":"/","description":"Can you make Ramen? Let's find out!","theme_color":"#da532c","icons":[{"src":"android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"android-chrome-512x512.png","sizes":"512x512","type":"image/png"}]} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Disallow: |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.