summaryrefslogtreecommitdiff
path: root/_site_build/_includes
diff options
context:
space:
mode:
authordavidtsadler <davidtsadler@googlemail.com>2011-12-28 19:32:44 +0000
committerdavidtsadler <davidtsadler@googlemail.com>2011-12-28 19:32:44 +0000
commitfc6384360e2e4ce8905ff7769866f8dba3702a02 (patch)
tree7a804eea783b0a82a416c0cf86530d3712d7f0a7 /_site_build/_includes
parent5e4be1b2145ab96fd57d4a61f266169c13af51b4 (diff)
Create basic layout for site.
Diffstat (limited to '_site_build/_includes')
-rw-r--r--_site_build/_includes/footer.html5
-rw-r--r--_site_build/_includes/head.html5
-rw-r--r--_site_build/_includes/header.html8
-rw-r--r--_site_build/_includes/sidebar.html29
4 files changed, 47 insertions, 0 deletions
diff --git a/_site_build/_includes/footer.html b/_site_build/_includes/footer.html
new file mode 100644
index 0000000..70bd3c5
--- /dev/null
+++ b/_site_build/_includes/footer.html
@@ -0,0 +1,5 @@
+<footer>
+ <p>
+ <small>Copyright &copy; 2011 by {{ site.author }}. All Rights Reserved.</small>
+ </p>
+</footer>
diff --git a/_site_build/_includes/head.html b/_site_build/_includes/head.html
new file mode 100644
index 0000000..54d16d0
--- /dev/null
+++ b/_site_build/_includes/head.html
@@ -0,0 +1,5 @@
+<meta charset="utf-8">
+<title>{{ page.title }} - {{ site.title }}</title>
+<meta name="viewport" content="width=device-width,initial-scale=1">
+<link rel="stylesheet" href="/css/style.css?v=1">
+<script src="/js/modernizr-2.0.6.min.js"></script>
diff --git a/_site_build/_includes/header.html b/_site_build/_includes/header.html
new file mode 100644
index 0000000..7a3c22e
--- /dev/null
+++ b/_site_build/_includes/header.html
@@ -0,0 +1,8 @@
+<header>
+ <hgroup>
+ <h1><a href="/" rel="home" target="_self" title="{{ site.title }}">{{ site.title }}</a></h1>
+ {% if site.subtitle %}
+ <h2>{{ site.subtitle }}</h2>
+ {% endif %}
+ </hgroup>
+</header>
diff --git a/_site_build/_includes/sidebar.html b/_site_build/_includes/sidebar.html
new file mode 100644
index 0000000..a8fa207
--- /dev/null
+++ b/_site_build/_includes/sidebar.html
@@ -0,0 +1,29 @@
+<aside>
+ <nav id="site-navigation">
+ <h2>Links</h2>
+ <ul>
+ <li><a href="/" rel="home" target="_self" title="{{ site.title }}">Home</a></li>
+ <li><a href="/about.html" rel="author" target="_self" title="About {{ site.author }}">About</a></li>
+ </ul>
+ </nav>
+ <aside id="social">
+ <h2>Contact</h2>
+ <ul>
+ {% if site.email %}
+ <li>
+ <a href="mailto:{{ site.email }}" rel="author" target="_blank" title="Email {{site.author }}"><span>Email</span>{{ site.email }}</a>
+ </li>
+ {% endif %}
+ {% if site.twitter %}
+ <li>
+ <a href="http://twitter.com/#!/{{ site.twitter }}" rel="external nofollow" target="_blank" title="Follow {{ site.author }} on Twitter"><span>Twitter</span>@{{ site.twitter }}</a>
+ </li>
+ {% endif %}
+ {% if site.github %}
+ <li>
+ <a href="https://github.com/{{ site.github }}" rel="external nofollow" target="_blank" title="Follow {{ site.author }} on GitHub"><span>Github</span>{{ site.github }}</a>
+ </li>
+ {% endif %}
+ </ul>
+ </aside>
+</aside>