diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-03 18:09:56 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-03 18:09:56 -0400 |
commit | e30a298eb9f76beebe6529769ce736016c9fab42 (patch) | |
tree | 63179c7b80f074918bd4b6c05090b1c5a8ade70e | |
parent | 252bfd24afee42c1ba29b1a031208a98d4cbbd16 (diff) | |
download | my_new_personal_website-e30a298eb9f76beebe6529769ce736016c9fab42.tar.xz my_new_personal_website-e30a298eb9f76beebe6529769ce736016c9fab42.zip |
improved page title generation
-rw-r--r-- | .themes/classic/source/_includes/head.html | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.themes/classic/source/_includes/head.html b/.themes/classic/source/_includes/head.html index a4eec3d3..7f2b0715 100644 --- a/.themes/classic/source/_includes/head.html +++ b/.themes/classic/source/_includes/head.html @@ -4,11 +4,7 @@ <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" manifest="default.appcache?v=1" lang="en"><!--<![endif]--> <head> <meta charset="utf-8"> - {% if page.title %} - <title>{{site.title}}: {{page.title}}{% if site.author %} - {{ site.author }}{% endif %}</title> - {% else %} - <title>{{site.title}}{% if site.author %} - {{ site.author }}{% endif %}</title> - {% endif %} + <title>{{site.title}}{% if page.title %}: {{page.title}}{% endif %}</title> <meta name="author" content="{{site.author}}"> {% if page.description %} <meta name="description" content="{{page.description}}"/> |