Skip to content

Commit

Permalink
Converted to Jekyll
Browse files Browse the repository at this point in the history
- Moved based HTML structure to a layout file
  • Loading branch information
omgmog committed Oct 1, 2013
1 parent 71de470 commit b378acb
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
auto: true
safe: true
debug: true
48 changes: 48 additions & 0 deletions _layouts/base.html
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>

0 comments on commit b378acb

Please sign in to comment.