-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initialize site itself and build, get a bare template going
- Loading branch information
1 parent
2c28f22
commit f10dbd1
Showing
26 changed files
with
478 additions
and
167 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 @@ | ||
_cache |
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,28 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>QB Canon - About QB Canon</title> | ||
<link rel="stylesheet" href="./css/default.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"> | ||
<a href="./">QB Canon</a> | ||
</div> | ||
<nav> | ||
<a href="./">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./contribute.html">Contribute</a> | ||
</nav> | ||
</header> | ||
|
||
<main role="main"> | ||
<h1>About QB Canon</h1> | ||
<p>A site to eventually contain all of the High School Quizbowl Canon as a resource for those looking to improve.</p> | ||
<p>An ambitious goal, to be sure, but one we’d like to achieve.</p> | ||
</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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>My Hakyll Blog - Archives</title> | ||
<link rel="stylesheet" href="./css/default.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"> | ||
<a href="./">My Hakyll Blog</a> | ||
</div> | ||
<nav> | ||
<a href="./">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./contact.html">Contact</a> | ||
<a href="./archive.html">Archive</a> | ||
</nav> | ||
</header> | ||
|
||
<main role="main"> | ||
<h1>Archives</h1> | ||
Here you can find all my previous posts: | ||
<ul> | ||
|
||
<li> | ||
<a href="./posts/2015-12-07-tu-quoque.html">Tu Quoque</a> - December 7, 2015 | ||
</li> | ||
|
||
<li> | ||
<a href="./posts/2015-11-28-carpe-diem.html">Carpe Diem</a> - November 28, 2015 | ||
</li> | ||
|
||
<li> | ||
<a href="./posts/2015-10-07-rosa-rosa-rosam.html">Rosa Rosa Rosam</a> - October 7, 2015 | ||
</li> | ||
|
||
<li> | ||
<a href="./posts/2015-08-12-spqr.html">S.P.Q.R.</a> - August 12, 2015 | ||
</li> | ||
|
||
</ul> | ||
|
||
|
||
</main> | ||
|
||
<footer> | ||
Site proudly generated by | ||
<a href="http://jaspervdj.be/hakyll">Hakyll</a> | ||
</footer> | ||
</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,33 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>My Hakyll Blog - Contact</title> | ||
<link rel="stylesheet" href="./css/default.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"> | ||
<a href="./">QB Canon</a> | ||
</div> | ||
<nav> | ||
<a href="./">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./contribute.html">Contribute</a> | ||
</nav> | ||
</header> | ||
|
||
<main role="main"> | ||
<h1>Contact</h1> | ||
<p>I live in a small hut in the mountains of Kumano Kodō on Kii Hantō and would not | ||
like to be contacted.</p> | ||
</main> | ||
|
||
<footer> | ||
Site proudly generated by | ||
<a href="http://jaspervdj.be/hakyll">Hakyll</a> | ||
</footer> | ||
</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,27 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>QB Canon - Contribute</title> | ||
<link rel="stylesheet" href="./css/default.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"> | ||
<a href="./">QB Canon</a> | ||
</div> | ||
<nav> | ||
<a href="./">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./contribute.html">Contribute</a> | ||
</nav> | ||
</header> | ||
|
||
<main role="main"> | ||
<h1>Contribute</h1> | ||
<p>We’re getting instructions up as you read this, but you can email <a href="mailto:[email protected]">the website owner</a> for now.</p> | ||
</main> | ||
</body> | ||
</html> |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,34 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="x-ua-compatible" content="ie=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>QB Canon - Home</title> | ||
<link rel="stylesheet" href="./css/default.css" /> | ||
</head> | ||
<body> | ||
<header> | ||
<div class="logo"> | ||
<a href="./">QB Canon</a> | ||
</div> | ||
<nav> | ||
<a href="./">Home</a> | ||
<a href="./about.html">About</a> | ||
<a href="./contribute.html">Contribute</a> | ||
</nav> | ||
</header> | ||
|
||
<main role="main"> | ||
<h1>Home</h1> | ||
<h2>Welcome</h2> | ||
|
||
<img src="./images/keep-calm.png" style="float: right; margin: 10px;" /> | ||
|
||
<p>Welcome to the QB Canon site!</p> | ||
|
||
<p>As of yet we have no content, but if you want to <a href="contribute.html">contribute</a>, you're more than welcome to!</p> | ||
|
||
</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
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
Oops, something went wrong.