Initial commit
Gil Poiares-Oliveira gil@poiares-oliveira.com
Mon, 24 Apr 2023 14:40:43 +0000
13 files changed,
689 insertions(+),
0 deletions(-)
A
403.html
@@ -0,0 +1,90 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>403 Forbidden</title> + <style> + body { + background-color: #121212; + max-width: 50rem; + margin: auto; + color: var(--accent-color); + font-family: "Helvetica Neue", sans-serif; + color: white; + } + main { + margin-left: 10px; + margin-right: 10px; + } + footer { + position: fixed; + bottom: 5px; + font-size: .75rem; + } + a { + text-decoration: none; + color: white; + } + h1 { + font-size: 4em; + } + .description { + margin-top: 4em; + font-size: 1.25em; + } + + .explaination { + font-size: 1em; + } + + .error-text { + background-color: #212121; + font-size: 1.25em; + border-radius: .25em; + padding: 1em; + } + + .button { + background-color: #212121; + border-radius: .5em; + padding: .75em; + border: solid grey; + + } + + .button-div { + margin-top: 5rem; + } + + </style> +</head> +<body> + <main> + <h1>Nothing for you to see here 馃敀</h1> + <div class="error"> + <span class="error-text">鈿狅笍 HTTP error: <code>403 Forbidden</code></span> + </div> + + <div class="description"> + <p>Sorry! You don't have permission to open this page.</p> + </div> + <div class="explaination"> + <p>Here's what you can do:</p> + <ul> + <li>Check if you have permission to open this page.</li> + <li>Check if you're authenticated correctly.</li> + </ul> + </div> + <div class="button-div"> + <a class="button" href="/">馃彔 Go home</a> + </div> + </main> +</body> +</html>
A
404.html
@@ -0,0 +1,91 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>404 Not Found | Gil Oliveira</title> + <style> + body { + background-color: #121212; + max-width: 50rem; + margin: auto; + color: var(--accent-color); + font-family: "Helvetica Neue", sans-serif; + color: white; + } + main { + margin-left: 10px; + margin-right: 10px; + } + footer { + position: fixed; + bottom: 5px; + font-size: .75rem; + } + a { + text-decoration: none; + color: white; + } + h1 { + font-size: 4em; + } + .description { + margin-top: 4em; + font-size: 1.25em; + } + + .explaination { + font-size: 1em; + } + + .error-text { + background-color: #212121; + font-size: 1.25em; + border-radius: .25em; + padding: 1em; + } + + .button { + background-color: #212121; + border-radius: .5em; + padding: .75em; + border: solid grey; + + } + + .button-div { + margin-top: 5rem; + } + + </style> +</head> +<body> + <main> + <h1>Page not found 馃</h1> + <div class="error"> + <span class="error-text">鈿狅笍 HTTP error: <code>404 Not Found</code></span> + </div> + + <div class="description"> + <p>Sorry! You requested a page that doesn't exist.</p> + </div> + <div class="explaination"> + <p>Here's what may have happened:</p> + <ul> + <li>You mistyped the URL.</li> + <li>Someone sent you an old link.</li> + <li>You were bored and wanted to see what the 404 page looks like.</li> + </ul> + </div> + <div class="button-div"> + <a class="button" href="/">馃彔 Go home</a> + </div> + </main> +</body> +</html>
A
410.html
@@ -0,0 +1,90 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>410 Gone</title> + <style> + body { + background-color: #121212; + max-width: 50rem; + margin: auto; + color: var(--accent-color); + font-family: "Helvetica Neue", sans-serif; + color: white; + } + main { + margin-left: 10px; + margin-right: 10px; + } + footer { + position: fixed; + bottom: 5px; + font-size: .75rem; + } + a { + text-decoration: none; + color: white; + } + h1 { + font-size: 4em; + } + .description { + margin-top: 4em; + font-size: 1.25em; + } + + .explaination { + font-size: 1em; + } + + .error-text { + background-color: #212121; + font-size: 1.25em; + border-radius: .25em; + padding: 1em; + } + + .button { + background-color: #212121; + border-radius: .5em; + padding: .75em; + border: solid grey; + + } + + .button-div { + margin-top: 5rem; + } + + </style> +</head> +<body> + <main> + <h1>...aaaaand it's gone 馃挩</h1> + <div class="error"> + <span class="error-text">鈿狅笍 HTTP error: <code>410 Gone</code></span> + </div> + + <div class="description"> + <p>Sorry! You requested a page that doesn't exist anymore.</p> + </div> + <div class="explaination"> + <p>Here's what may have happened:</p> + <ul> + <li>You followed an old link.</li> + <li>Someone put a bottle of tequila over the delete key and deleted this page.</li> + </ul> + </div> + <div class="button-div"> + <a class="button" href="/">馃彔 Go home</a> + </div> + </main> +</body> +</html>
A
500.html
@@ -0,0 +1,91 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>404 Not Found | Gil Oliveira</title> + <style> + body { + background-color: #121212; + max-width: 50rem; + margin: auto; + color: var(--accent-color); + font-family: "Helvetica Neue", sans-serif; + color: white; + } + main { + margin-left: 10px; + margin-right: 10px; + } + footer { + position: fixed; + bottom: 5px; + font-size: .75rem; + } + a { + text-decoration: none; + color: white; + } + h1 { + font-size: 4em; + } + .description { + margin-top: 4em; + font-size: 1.25em; + } + + .explaination { + font-size: 1em; + } + + .error-text { + background-color: #212121; + font-size: 1.25em; + border-radius: .25em; + padding: 1em; + } + + .button { + background-color: #212121; + border-radius: .5em; + padding: .75em; + border: solid grey; + + } + + .button-div { + margin-top: 5rem; + } + + </style> +</head> +<body> + <main> + <h1>Something went wrong on our end 馃ゴ</h1> + <div class="error"> + <span class="error-text">鈿狅笍 HTTP error: <code>500 Internal Server Error</code></span> + </div> + + <div class="description"> + <p>Sorry! Our systems have encountered a situation that they don't know how to handle.</p> + </div> + <div class="explaination"> + <p>Here's what you can do:</p> + <ul> + <li>Come back later.</li> + <li>Refresh the page.</li> + <li>Try the homepage.</li> + </ul> + </div> + <div class="button-div"> + <a class="button" href="/">馃彔 Go home</a> + </div> + </main> +</body> +</html>
A
LICENSES/MIT.txt
@@ -0,0 +1,9 @@
+MIT License + +Copyright (c) <year> <copyright holders> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
A
contact/index.html
@@ -0,0 +1,32 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="https://static.gil.is/css/infopage.css"> +</head> +<body> + <header> + <a href="/">Home</a> › Contact + </header> + <main> + <h1>Contact</h1> + <p>漏 2022 Gil Oliveira. All rights reserved.</p> + <p>Cute doodle by <a href="https://heyheymomo.com">Hey Hey Momo</a></p> + + <h2>Open source</h2> + <p>The code used to make this website is available under an MIT license.</p> + + <h2>Privacy</h2> + <p>I take your privacy very very seriously.</p> + <p>You can consult our privacy policy <a href="https://privacy.giloliveira.net/">here</a>.</p> + </main> +</body> +</html>
A
eo/index.html
@@ -0,0 +1,37 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="../style.css"> + +</head> +<body> + <img class="bgimg" src="https://static.gil.is/svg/scientist_nobg.svg" alt="Gil"> + <main> + <div class="greeting"> + <p class="mainText">Saluton!</p> + <p class="mainText">Mi estas <span class="name">Gil</span></p> + </div> + <p class="ipa">/蕭i色/</p> + <div> + <ul> + <li><a href="https://orcid.org/0000-0003-4638-2879">Sciencisto.</a></li> + <li><a href="https://git.sr.ht/~gpo">Teknikisto.</a></li> + <li><a href="https://gil.omg.lol">Homo.</a></li> + </ul> + </div> + </main> + + <footer> + <a href="jura">Enuigaj juraj aferoj.</a> + </footer> +</body> +</html>
A
eo/jura/index.html
@@ -0,0 +1,31 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="https://static.gil.is/css/infopage.css"> +</head> +<body> + <header> + <a href="index.html">Hejmpa臐o</a> › Jura + </header> + <h1>Legal</h1> + <p>漏 2022 Gil Oliveira. 膱iuj rajtoj rezervitaj.</p> + <p>Bela doodle de <a href="https://heyheymomo.com">Hey Hey Momo</a>.</p> + + <h2>Open source</h2> + <p>La kodo uzata por fari 膲i tiun retejon estas havebla sub MIT-licenco.</p> + <p>Legu la licenco <a href="https://static.gil.is/license/mit.txt">膲i tie</a>. + + <h2>Privateco</h2> + <p>Mi prenas vian privatecon tre serioze.</p> + <p>Vi povas konsulti nian privatecan politikon (en la angla) <a href="https://privacy.giloliveira.net/">膲i tie</a>.</p> +</body> +</html>
A
index.html
@@ -0,0 +1,52 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="style.css"> + <style> + .top-banner { + top: 0; + display: block; + font-family: sans-serif; + } + + .top-banner > p { + color: white; + } + </style> + +</head> +<body> + <img class="bgimg" src="https://static.gil.is/svg/scientist_nobg.svg" alt="Gil"> + <div class="top-banner"> + <p>鈩癸笍 This is my new website! Looking for something that used to be here? <a href="https://legacy.giloliveira.net">Check the old one</a>. + <hr style="border: 2px white; border-style: none none dotted;"> + </div> + <main> + <div class="greeting"> + <p class="mainText">Hi!</p> + <p class="mainText">I'm <span class="name">Gil</span></p> + </div> + <p class="ipa">/蕭i色/</p> + <div> + <ul> + <li><a href="https://orcid.org/0000-0003-4638-2879">Scientist.</a></li> + <li><a href="https://git.sr.ht/~gpo">Techie.</a></li> + <li><a href="https://gil.omg.lol">Human.</a></li> + </ul> + </div> + </main> + + <footer> + <a href="legal">Boring legal stuff.</a> + </footer> +</body> +</html>
A
legal/index.html
@@ -0,0 +1,31 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="https://static.gil.is/css/infopage.css"> +</head> +<body> + <header> + <a href="/">Home</a> › Legal + </header> + <h1>Legal</h1> + <p>漏 2022 Gil Oliveira. All rights reserved.</p> + <p>Cute doodle by <a href="https://heyheymomo.com">Hey Hey Momo</a>.</p> + + <h2>Open source</h2> + <p>The code used to make this website is available under an MIT license.</p> + <p>Read the license <a href="https://static.gil.is/license/mit.txt">here</a>. + + <h2>Privacy</h2> + <p>I take your privacy very very seriously.</p> + <p>You can consult our privacy policy <a href="https://privacy.giloliveira.net/">here</a>.</p> +</body> +</html>
A
pt/index.html
@@ -0,0 +1,37 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="../style.css"> + +</head> +<body> + <img class="bgimg" src="https://static.gil.is/svg/scientist_nobg.svg" alt="Gil"> + <main> + <div class="greeting"> + <p class="mainText-pt">Ol谩!</p> + <p class="mainText-pt">Sou o <span class="name">Gil</span></p> + </div> + <p class="ipa">/蕭i色/</p> + <div> + <ul> + <li><a href="https://orcid.org/0000-0003-4638-2879">Cientista.</a></li> + <li><a href="https://git.sr.ht/~gpo">Techie.</a></li> + <li><a href="https://gil.omg.lol">Ser humano.</a></li> + </ul> + </div> + </main> + + <footer> + <a href="legal">Cenas jur铆dicas aborrecidas.</a> + </footer> +</body> +</html>
A
pt/legal/index.html
@@ -0,0 +1,31 @@
+<!-- +SPDX-FileCopyrightText: 2023 Gil Poiares-Oliveira <gil@poiares-oliveira.com> + +SPDX-License-Identifier: MIT +--> + +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <title>Gil Oliveira</title> + <link rel="stylesheet" href="https://static.gil.is/css/infopage.css"> +</head> +<body> + <header> + <a href="../">P谩gina inicial</a> › Legal + </header> + <h1>Legal</h1> + <p>漏 2022 Gil Oliveira. Todos os direitos reservados.</p> + <p>Ilustra莽茫o por <a href="https://heyheymomo.com">Hey Hey Momo</a>.</p> + +<!-- <h2>C贸digo aberto</h2> + <p>O c贸digo usado para desenvolver este s铆tio Web est谩 dispon铆vel sob uma licensa MIT.</p> + <p>Read the license <a href="https://static.gil.is/license/mit.txt">here</a>. --> + + <h2>Privacidade</h2> + <p>Eu levo a tua privaciedade muito muito a s茅rio.</p> + <p>Consulta a Pol铆tica de Privacidade (em ingl锚s) <a href="https://privacy.giloliveira.net/">aqui</a>.</p> +</body> +</html>
A
style.css
@@ -0,0 +1,67 @@
+@import url("https://b2static.gil.is/fonts/atkinson-hyperlegible/font.css"); + +:root { + --accent-color: #4a69bd; + --bg-color: #0c2461; +} +body { + background-color: #0c2461; + color: var(--accent-color); + font-family: "Atkinson Hyperlegible", "Helvetica Neue", sans-serif; + font-weight: bold; +} +footer { + position: fixed; + bottom: 5px; + font-size: .75rem; +} +.greeting p { + margin-top: 0; + margin-bottom: -25px; +} +.name { + color: white; +} +.mainText, .mainText-pt { + font-size: 8em; +} + +li { + font-size: 3em; + margin-top: 0; + margin-bottom: -5px; +} +img { + position: absolute; + right: 0%; + bottom: 0em; + width: 45vmax; + opacity: .25; +} +a { + text-decoration: none; + color: var(--accent-color); +} +a:hover { + color: white; +} +ul { + list-style-type: none; + margin-left: -2rem; + position: fixed; + bottom: 2rem; +} +.ipa { + margin-top: 3rem; + font-size: 2rem; +} + +@media only screen and (max-width: 600px) { + .mainText { + font-size: 6em; + } + .mainText-pt { + font-size: 5em; + line-height: 1.4em; + } +}