Project skeletoning
This commit is contained in:
parent
f2070f0797
commit
c2804d1329
17 changed files with 90 additions and 0 deletions
1
footer/footer.css
Normal file
1
footer/footer.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Footer CSS */
|
||||
1
footer/footer.html
Normal file
1
footer/footer.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<!-- Site footer -->
|
||||
1
gear/gear.css
Normal file
1
gear/gear.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Gear-page specific CSS */
|
||||
1
gear/gear.html
Normal file
1
gear/gear.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<!-- Gear list fragment -->
|
||||
1
gear/gear.js
Normal file
1
gear/gear.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
// Gear list JS
|
||||
23
gear/index.html
Normal file
23
gear/index.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!doctype html>
|
||||
<html class="no-js" lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<title>Gearlist</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<!-- Place favicon.ico in the root directory -->
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 8]>
|
||||
<p class="browserupgrade">
|
||||
You are using an <strong>outdated</strong> browser. Please
|
||||
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
|
||||
your experience.
|
||||
</p>
|
||||
<![endif]-->
|
||||
This will be my gear
|
||||
</body>
|
||||
</html>
|
||||
1
global/global.css
Normal file
1
global/global.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Global CSS options */
|
||||
8
global/loadin.js
Normal file
8
global/loadin.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
function loadHTML(elementId, url) {
|
||||
fetch(url)
|
||||
.then((response) => response.text())
|
||||
.then((data) => {
|
||||
document.getElementById(elementId).innerHTML = data;
|
||||
})
|
||||
.catch((error) => console.error("Error loading HTML:", error));
|
||||
}
|
||||
1
header/header.css
Normal file
1
header/header.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Header CSS */
|
||||
1
header/header.html
Normal file
1
header/header.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<!-- Site header -->
|
||||
1
index.css
Normal file
1
index.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Landing page CSS */
|
||||
23
index.html
Normal file
23
index.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!doctype html>
|
||||
<html class="no-js" lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<title>Kinklist</title>
|
||||
<meta name="description" content="Personal kinklist and gearlist" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<!-- Place favicon.ico in the root directory -->
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 8]>
|
||||
<p class="browserupgrade">
|
||||
You are using an <strong>outdated</strong> browser. Please
|
||||
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
|
||||
your experience.
|
||||
</p>
|
||||
<![endif]-->
|
||||
Look ma, I'm horny!
|
||||
</body>
|
||||
</html>
|
||||
1
index.js
Normal file
1
index.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
// Landing page JS
|
||||
23
kinks/index.html
Normal file
23
kinks/index.html
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<!doctype html>
|
||||
<html class="no-js" lang="">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||||
<title>Kinklist</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
|
||||
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
||||
<!-- Place favicon.ico in the root directory -->
|
||||
</head>
|
||||
<body>
|
||||
<!--[if lt IE 8]>
|
||||
<p class="browserupgrade">
|
||||
You are using an <strong>outdated</strong> browser. Please
|
||||
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
|
||||
your experience.
|
||||
</p>
|
||||
<![endif]-->
|
||||
This will be my kinklist
|
||||
</body>
|
||||
</html>
|
||||
1
kinks/kinks.css
Normal file
1
kinks/kinks.css
Normal file
|
|
@ -0,0 +1 @@
|
|||
/* Kink list specific CSS */
|
||||
1
kinks/kinks.html
Normal file
1
kinks/kinks.html
Normal file
|
|
@ -0,0 +1 @@
|
|||
<!-- Kink list fragment -->
|
||||
1
kinks/kinks.js
Normal file
1
kinks/kinks.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
// Kinks page JS
|
||||
Loading…
Add table
Add a link
Reference in a new issue