Images shrunk + slight html optimization + created .gitignore

Sped up website by a little and shrunk all images in the 360 section by 3%
This commit is contained in:
Owen Quinlan 2021-07-11 21:16:35 +10:00
parent 38eb1b7c96
commit de2be1262e
2179 changed files with 3497 additions and 11 deletions

View file

@ -1,6 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./index.critical.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, height=device-height">
<meta name="description" content="BuyMyMojo's personal website">
@ -13,9 +16,16 @@
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="stylesheet" href="./node_modules/nes.css/css/nes.min.css">
<link rel="stylesheet" href="./node_modules/hint.css/hint.min.css">
<link rel="stylesheet" href="./bmm.css">
<!-- <link rel="stylesheet" media="screen" href="./node_modules/nes.css/css/nes.min.css"> -->
<link rel="preload" href="./node_modules/nes.css/css/nes.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="./node_modules/nes.css/css/nes.min.css"></noscript>
<!-- <link rel="stylesheet" media="screen" href="./node_modules/hint.css/hint.min.css"> -->
<link rel="preload" href="./node_modules/hint.css/hint.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="./node_modules/hint.css/hint.min.css"></noscript>
<!-- <link rel="stylesheet" href="./bmm.min.css"> -->
<link rel="preload" href="./bmm.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="./bmm.css"></noscript>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
@ -23,9 +33,9 @@
</head>
<body>
<!-- Include quicklink from dist -->
<script src="./node_modules/quicklink/dist/quicklink.umd.js"></script>
<script defer src="./node_modules/quicklink/dist/quicklink.umd.js"></script>
<!-- Initialize (you can do this whenever you want) -->
<script>
<script defer>
window.addEventListener('load', () => {
quicklink.listen();
});