diff options
author | fhemberger <mail@frederic-hemberger.de> | 2011-09-04 12:21:58 +0200 |
---|---|---|
committer | fhemberger <mail@frederic-hemberger.de> | 2011-09-04 12:21:58 +0200 |
commit | dae6cceec216856cc85163ad8cc22daccd02bf59 (patch) | |
tree | a66deba2671008339d00089a679fa762e4fbfbed /.themes/classic/source/_includes/head.html | |
parent | 8de095bfa919cb667496989de092626be9fab753 (diff) | |
download | my_new_personal_website-dae6cceec216856cc85163ad8cc22daccd02bf59.tar.xz my_new_personal_website-dae6cceec216856cc85163ad8cc22daccd02bf59.zip |
show page.title first, best practice for SEO and usability (e.g. bookmarks)
Diffstat (limited to '.themes/classic/source/_includes/head.html')
-rw-r--r-- | .themes/classic/source/_includes/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/_includes/head.html b/.themes/classic/source/_includes/head.html index 2799ee53..5370cb4a 100644 --- a/.themes/classic/source/_includes/head.html +++ b/.themes/classic/source/_includes/head.html @@ -4,7 +4,7 @@ <!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]--> <head> <meta charset="utf-8"> - <title>{{site.title}}{% if page.title %}: {{page.title}}{% endif %}</title> + <title>{% if page.title %}{{page.title}} « {% endif %}{{site.title}}</title> <meta name="author" content="{{site.author}}"> {% if page.description %} <meta name="description" content="{{page.description}}"/> |