forked from computeranonymous/computer
-
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.
- Moved based HTML structure to a layout file
- Loading branch information
Showing
2 changed files
with
51 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,3 @@ | ||
auto: true | ||
safe: true | ||
debug: true |
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,48 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>{{ page.title }} | computer anonymous</title> | ||
<link | ||
href="style.css" | ||
rel="stylesheet" | ||
/> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, user-scalable=false;" | ||
/> | ||
<meta | ||
http-equiv="content-type" | ||
content="text/html; charset=utf-8" | ||
/> | ||
{{ page.extra-head-tags }} | ||
</head> | ||
<body id="accessibility"> | ||
<section class="content"> | ||
<nav class="accessibility-menu"> | ||
<a | ||
href="#accessibility" | ||
class="color-change wob" | ||
> | ||
White on black version | ||
</a> | ||
<a | ||
href="#" | ||
class="color-change bow" | ||
> | ||
Black on white version | ||
</a> | ||
</nav> | ||
{{ content }} | ||
</section> | ||
<section id="license"> | ||
<p xmlns:dct="http://purl.org/dc/terms/"> | ||
<a rel="license" | ||
href="http://creativecommons.org/publicdomain/zero/1.0/"> | ||
<img src="http://i.creativecommons.org/p/zero/1.0/88x31.png" style="border-style: none;" alt="CC0" /> | ||
</a> | ||
<br /> | ||
To the extent possible under law, <span rel="dct:publisher" resource="[_:publisher]">the person who associated CC0</span> with this work has waived all copyright and related or neighboring rights to this work. | ||
</p> | ||
</section> | ||
</body> | ||
</html> |