Initial commit.

This commit is contained in:
2014-11-20 14:40:37 -05:00
commit 6da969b1e0
20 changed files with 500 additions and 0 deletions

10
include/footer.html Normal file
View File

@ -0,0 +1,10 @@
<!--Begin footer-->
<footer id="footer">
<a target="_blank" href="http://validator.w3.org/check?uri=referer">
<img id="validHTML5" src="/img/html5.png" alt="Valid HTML5!" />
</a>
<a target="_blank" href="http://jigsaw.w3.org/css-validator/check/referer">
<img id="validCSS" src="/img/vcss-blue.gif" alt="Valid CSS!" />
</a>
</footer>
<!--End footer-->

5
include/header.html Normal file
View File

@ -0,0 +1,5 @@
<!--Begin header-->
<header id="header">
<img id="banner" src="/img/banner.png" alt="L. Bradley LaBoon" />
</header>
<!--End header-->

9
include/navbar.html Normal file
View File

@ -0,0 +1,9 @@
<!--Begin navbar-->
<nav id="navbar">
<h3>Navigation</h3>
<a class="sidelink" href="/">Home</a>
<a class="sidelink" href="/about/">About Me</a>
<a class="sidelink" href="http://blog.bradleylaboon.com/">Boonean Logic</a>
<img id="profile" src="/img/profile.png" alt="Me!" />
</nav>
<!--End navbar-->