diff options
author | B Mathis <brandon@imathis.com> | 2009-10-20 09:16:14 -0500 |
---|---|---|
committer | B Mathis <brandon@imathis.com> | 2009-10-20 09:16:14 -0500 |
commit | 6c8b67d0698d9f3fa984b20ccd53ad196adb3533 (patch) | |
tree | 0b288dd495f867f7553f5356211c476ab8592000 | |
parent | fd32bcaba026d0e31b3396eb31450b8ac7a15242 (diff) | |
download | my_new_personal_website-6c8b67d0698d9f3fa984b20ccd53ad196adb3533.tar.xz my_new_personal_website-6c8b67d0698d9f3fa984b20ccd53ad196adb3533.zip |
page titles are now formatted "Title - Blog Title"
-rw-r--r-- | source/_layouts/default.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/_layouts/default.haml b/source/_layouts/default.haml index b32b026b..77bd29e7 100644 --- a/source/_layouts/default.haml +++ b/source/_layouts/default.haml @@ -6,13 +6,13 @@ root_url: !!! 1.1 Transitional %html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en") %head - %title= page.title + %title= "#{page.title} - #{page.blog_title}" - if page.respond_to? :description %meta(name="description" content="#{page.description}")/ - if page.respond_to? :keywords %meta(name="keywords" content="#{page.keywords}")/ %link(href="#{page.root_url}/stylesheets/screen.css" rel="stylesheet" media="screen projection" type="text/css") - %link(href="#{page.root_url}/atom.xml" rel="alternate" title="##{page.blog_title}" type="application/atom+xml") + %link(href="#{page.root_url}/atom.xml" rel="alternate" title="#{page.blog_title}" type="application/atom+xml") %body #header .page_width |