diff options
Diffstat (limited to '_site_build/_includes')
| -rw-r--r-- | _site_build/_includes/footer.html | 5 | ||||
| -rw-r--r-- | _site_build/_includes/head.html | 5 | ||||
| -rw-r--r-- | _site_build/_includes/header.html | 8 | ||||
| -rw-r--r-- | _site_build/_includes/sidebar.html | 29 |
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 © 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> |
