diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-08-01 17:57:17 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-08-01 17:57:29 -0400 |
commit | 98200038f7c1c48d8953b530f6002729d8514dc4 (patch) | |
tree | 3c767d62a950787dedc22dca84264a0e4050df28 | |
parent | 7b52fb492ec003efbc0663fc5f8549bc4c6209b8 (diff) | |
download | my_new_personal_website-98200038f7c1c48d8953b530f6002729d8514dc4.tar.xz my_new_personal_website-98200038f7c1c48d8953b530f6002729d8514dc4.zip |
added header to customizable includes
Diffstat (limited to '')
-rw-r--r-- | .themes/classic/source/_includes/custom/header.html | 6 | ||||
-rw-r--r-- | .themes/classic/source/_includes/header.html | 7 |
2 files changed, 7 insertions, 6 deletions
diff --git a/.themes/classic/source/_includes/custom/header.html b/.themes/classic/source/_includes/custom/header.html new file mode 100644 index 00000000..35f9c059 --- /dev/null +++ b/.themes/classic/source/_includes/custom/header.html @@ -0,0 +1,6 @@ +<hgroup> + <h1><a href="{{ root_url }}/">{{ site.title }}</a></h1> + {% if site.subtitle %} + <h2>{{ site.subtitle }}</h2> + {% endif %} +</hgroup> diff --git a/.themes/classic/source/_includes/header.html b/.themes/classic/source/_includes/header.html index 35f9c059..524de651 100644 --- a/.themes/classic/source/_includes/header.html +++ b/.themes/classic/source/_includes/header.html @@ -1,6 +1 @@ -<hgroup> - <h1><a href="{{ root_url }}/">{{ site.title }}</a></h1> - {% if site.subtitle %} - <h2>{{ site.subtitle }}</h2> - {% endif %} -</hgroup> +{% include custom/header.html %} |