-
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
Showing
7 changed files
with
1,264 additions
and
0 deletions.
There are no files selected for viewing
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Contact - autore.sh</title> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="grid-container"> | ||
<header> | ||
<nav> | ||
<button class="hamburger" aria-label="Toggle menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</button> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="mission.html">Mission</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<div class="content"> | ||
<div class="markdown-content"> | ||
<h1>STANDBY</h1> | ||
<p class="subheading">you down with pgp? yeah you know me...</p> | ||
</div> | ||
</div> | ||
</main> | ||
</div> | ||
<script src="main.js"></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,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>AUTORE</title> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="grid-container"> | ||
<header> | ||
<nav> | ||
<button class="hamburger" aria-label="Toggle menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</button> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="mission.html">Mission</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<div class="content"> | ||
<div class="logo-container"> | ||
<img src="logo.png" alt="autore.sh Logo" class="centered-logo"> | ||
</div> | ||
<div class="markdown-content"> | ||
<h1> </h1> | ||
</div> | ||
</div> | ||
</main> | ||
</div> | ||
<script src="main.js"></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,21 @@ | ||
// Mobile menu functionality | ||
const hamburger = document.querySelector('.hamburger'); | ||
const navMenu = document.querySelector('nav ul'); | ||
const body = document.body; | ||
|
||
function toggleMenu() { | ||
hamburger.classList.toggle('active'); | ||
navMenu.classList.toggle('active'); | ||
body.classList.toggle('menu-active'); | ||
} | ||
|
||
hamburger.addEventListener('click', toggleMenu); | ||
|
||
// Close menu when clicking a link | ||
document.querySelectorAll('nav a').forEach(link => { | ||
link.addEventListener('click', () => { | ||
hamburger.classList.remove('active'); | ||
navMenu.classList.remove('active'); | ||
body.classList.remove('menu-active'); | ||
}); | ||
}); |
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,37 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Mission - autore.sh</title> | ||
<link rel="icon" href="favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
<body> | ||
<div class="grid-container"> | ||
<header> | ||
<nav> | ||
<button class="hamburger" aria-label="Toggle menu"> | ||
<span></span> | ||
<span></span> | ||
<span></span> | ||
</button> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="mission.html">Mission</a></li> | ||
<li><a href="contact.html">Contact</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<div class="content"> | ||
<div class="markdown-content"> | ||
<h1>STANDBY</h1> | ||
<p class="subheading">coming soon...</p> | ||
</div> | ||
</div> | ||
</main> | ||
</div> | ||
<script src="main.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.