Site overhaul attempt

This commit is contained in:
Kaisaan 2021-10-21 20:30:03 -04:00
parent 230d788bec
commit 2a2134b179
15 changed files with 114 additions and 37 deletions

2
_config.yml Normal file
View File

@ -0,0 +1,2 @@
name: Kaisaan Yummy Site
title: Kaisaan Yummy Site

18
_css/style.css Normal file
View File

@ -0,0 +1,18 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.body {
font-family: 'Roboto', sans-serif;
background-color: #EFEFEF;
}
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #259441;
font-family: 'Roboto', sans-serif;
}
.navstd {
float: left;
}

10
_includes/nav.html Normal file
View File

@ -0,0 +1,10 @@
<div class="navbar">
<nav>
<ul>
<li class="navstd"><a href="/">Home</a></li>
<li class="navstd"><a href="/pages/about.html">About Me</a></li>
<li class="navstd"><a href="/pages/gaming.html">Gaming</a></li>
<li class="navstd"><a href="/pages/contact.html">Contact</a></li>
</ul>
</nav>
</div>

11
_layouts/default.html Normal file
View File

@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ page.title }} | KYS</title>
<link rel="stylesheet" href="/_ccs/style.css">
</head>
<body>
{% include nav.html %}
{{ content }}
</body>
</html>

View File

@ -1,37 +1,12 @@
<!DOCTYPE html>
<html>
<head>
<title>Kaisaan Yummy Site</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<a class="active" href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">About Me
</button>
<div class="dropdown-content">
<a href="pages/outside.html">Outside</a>
<a href="pages/online.html">Online</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Projects
</button>
<div class="dropdown-content">
<a href="pages/school.html">School</a>
<a href="pages/personal.html">Personal</a>
</div>
</div>
<a href="pages/social.html">Socials</a>
</div>
<center><h1>Welcome to Kaisaan's Website!</h1></center>
<h2>Hello World!</h2>
<p>Hello there I'm Kaisaan Siddiqui, just another person on the internet. On this website I plan on talking about my passions and achievements.</p>
<h2>Source</h2>
<p>You can find the source code for this website on <a href="https://github.com/Kaisaan/kaisaan.github.io" target="_blank">Github</a>.</p>
</body>
</html>
---
title: Home
layout: default
---
<center><h1>Welcome to Kaisaan's Website!</h1></center>
<h2>Hello There</h2>
<p>I'm Kaisaan Siddiqui, just another person on the internet. This website is still a W.I.P. I plan on documenting my passions and projects here.</p>
<br>
<br>
<h2>Source</h2>
<p>You can find the source code for this website on <a href="https://github.com/Kaisaan/kaisaan.github.io" target="_blank">Github</a>.</p>

37
index_old.html Normal file
View File

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<title>Kaisaan Yummy Site</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<div class="navbar">
<a class="active" href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">About Me
</button>
<div class="dropdown-content">
<a href="pages/outside.html">Outside</a>
<a href="pages/online.html">Online</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Projects
</button>
<div class="dropdown-content">
<a href="pages/school.html">School</a>
<a href="pages/personal.html">Personal</a>
</div>
</div>
<a href="pages/social.html">Socials</a>
</div>
<center><h1>Welcome to Kaisaan's Website!</h1></center>
<h2>Hello World!</h2>
<p>Hello there I'm Kaisaan Siddiqui, just another person on the internet. On this website I plan on talking about my passions and achievements.</p>
<h2>Source</h2>
<p>You can find the source code for this website on <a href="https://github.com/Kaisaan/kaisaan.github.io" target="_blank">Github</a>.</p>
</body>
</html>

8
pages/about.html Normal file
View File

@ -0,0 +1,8 @@
---
title: About
layout: default
---
<h1>About Me</h1>
Under Construction.

8
pages/contact.html Normal file
View File

@ -0,0 +1,8 @@
---
title: Contact
layout: default
---
<h1>Contact Me</h1>
Under Construction.

8
pages/gaming.html Normal file
View File

@ -0,0 +1,8 @@
---
title: Gaming
layout: default
---
<h1>Gaming</h1>
Under Construction.