-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major revamp, move to layout.html, lots of cleanup
- Loading branch information
1 parent
2e81850
commit 9541c85
Showing
10 changed files
with
187 additions
and
187 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1 @@ | ||
<link rel="preload" href="/static/styles.css" as="style" /> | ||
<link rel="preload" href="/static/scripts.js" as="script" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/static/styles.css" /> |
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title><!--$TITLE--></title> | ||
<link rel="preload" href="/static/styles.css" as="style" /> | ||
<link rel="preload" href="/static/scripts.js" as="script" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<link rel="stylesheet" href="/static/styles.css" /> | ||
<link rel="stylesheet" href="/static/css/style.css" /> | ||
</head> | ||
<body> | ||
<main> | ||
<section class="hero"> | ||
<!-- Constrain width area --> | ||
<div class="container"> | ||
<h1>It's a Qub-ical World</h1> | ||
<p class="subtitle">...and we're just playing in it!</p> | ||
<nav> | ||
<a href="/">Home</a> | ||
<a href="/contact">Contact</a> | ||
</nav> | ||
</div> | ||
</section> | ||
<div class="container"><!--$BODY--></div> | ||
<footer> | ||
<div class="container"> | ||
Copyright © | ||
<!--$YEAR--> | ||
$DOMAIN | ||
</div> | ||
</footer> | ||
</main> | ||
</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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!--TITLE | ||
Page Not Found | ||
<!--META | ||
TITLE: Page Not Found | ||
--> | ||
|
||
<h1>Page Not Found</h1> | ||
|
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!--TITLE | ||
Contact Us | ||
<!--META | ||
TITLE: Contact Us | ||
--> | ||
|
||
<h1>Contact Us</h1> | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!--TITLE | ||
$DOMAIN - Official Website | ||
<!--META | ||
TITLE: $DOMAIN - Official Website | ||
--> | ||
<h1>$DOMAIN</h1> | ||
|
||
|