diff options
| author | Barry Clark <barry@barryclark.co> | 2014-02-07 08:36:03 -0500 |
|---|---|---|
| committer | Barry Clark <barry@barryclark.co> | 2014-02-07 08:36:03 -0500 |
| commit | a6da2babe995f4731694764297413b53e501afcf (patch) | |
| tree | fe99ec8e5acbe677eb2c60c7c52cc76f2b9b1c42 | |
| parent | 4b9b8567614fe603f2e27424444d20bda1ed6373 (diff) | |
| download | acn-blog-a6da2babe995f4731694764297413b53e501afcf.tar.gz acn-blog-a6da2babe995f4731694764297413b53e501afcf.tar.bz2 acn-blog-a6da2babe995f4731694764297413b53e501afcf.zip | |
Include site name in header
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | _layouts/default.html | 2 | ||||
| -rw-r--r-- | index.html | 9 |
3 files changed, 3 insertions, 10 deletions
@@ -5,5 +5,5 @@ _site .sass-cache Gemfile Gemfile.lock -node_modules/* +node_modules package.json
\ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index 34dc7b3..c1761c2 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -21,7 +21,7 @@ <body> <header> - <a href="/" class="logo"><img src="/404.ups" /></a> + <a href="/" class="logo"><img src="/404.ups" />{{ site.name }}</a> <nav> <a href="/">Blog</a> @@ -2,15 +2,8 @@ layout: default --- -<div class="hero"> - <img src="/images/avatar.jpg"/> - <h1>Hi. Introduce yourself.</h1> - <p>Introduce yourself.</p> - <div style="clear:both;"></div> -</div> - <div class="articles"> - <h2><a href="/blog">Blog</a></h2> + <h2>Blog</h2> <div class="article"> <!-- <img src="assets/img/article1.jpg"/> --> |
