<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3226445239537350432</id><updated>2011-04-21T11:06:54.860-07:00</updated><category term='Applescript'/><category term='Blogger'/><category term='Changing-Page-Titles-in-Blogger'/><category term='Search-Engine-Optimization'/><category term='Conditional-Comments'/><category term='Omnifocus'/><category term='HTML'/><title type='text'>Instructional Materials: Rebecca's Workbench</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://rebeccasworkbench-instructional.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Rebecca O'Connell</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>3</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3226445239537350432.post-5909943288398349361</id><published>2008-07-13T22:11:00.000-07:00</published><updated>2008-07-13T22:28:57.320-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Search-Engine-Optimization'/><category scheme='http://www.blogger.com/atom/ns#' term='Changing-Page-Titles-in-Blogger'/><category scheme='http://www.blogger.com/atom/ns#' term='Blogger'/><title type='text'>Changing Blogger Titles from "Blog Title: Label/Page Title" to "Label/PageTitle: Blog Title"</title><content type='html'>&lt;p&gt;By default, Blogger displays titles "Blog Title: Label/Page Title." This is suboptimal from a Search Engine Optimization (SEO) perspective. Plus, it's just good practice to put the most important information first in a title. You probably didn't come her just to see "Rebecca's Workbench." No, you want to make Blogger behave in the desired manner. &lt;/p&gt;&lt;h4&gt;Attempts to Make Blogger Behave in the Desired Manner&lt;/h4&gt;&lt;p&gt;I found a number of pages with instructions on how to make blogger display page titles in the "Label/PageTitle: Blog Title" format, but none of them seemed to work for me. Additionally,  when they do (or did) work, some of them required that the title be positioned outside of the head tags and were reported to break certain Blogger customization features.&lt;/p&gt;&lt;p&gt;I found that one problem I was having was that the most frequently cited technique involve using the if conditional "&amp;lt;b:if cond="'data:blog.pageType"&amp;gt;." After some investigation, I discovered that label summaries return type "index," just like the blog's home page.  This meant that the conditional didn't work for me. So I changed the conditional to see if the blog's page name is an empty string, as it is for the home page, but is not for both individual blog posts and label summaries.&lt;/p&gt;&lt;p&gt;Another problem I had was finding the data tag I needed to display the blog's title without the trailing ": Post/Label Name," resulting in "Post/Label Name: Blog Name: Post/Label Name." the magic data tag is "&amp;amp;ltdata:blog.title&amp;gt; (found at &lt;a href="http://www.google.com/url?sa=t&amp;amp;ct=res&amp;amp;cd=4&amp;amp;url=http%3A%2F%2Fwww.blogfixes.com%2F2008%2F06%2Fhow-to-optimize-blogger-page-title.html&amp;amp;ei=V8t6SO2OEoiOhgT5tvQg&amp;amp;usg=AFQjCNHRACW0kO3s5CKIsgJ6BxQM3UWXfQ&amp;amp;sig2=GYYDiNL0-KPKq9b5rsGwRA"&gt;BLOGFixes.Com&lt;/a&gt;). So, to sum up, Blogger's title data tags (that I know of) are:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&amp;lt;data:blog.pageTitle/&amp;gt;: "Blog Title: Blog Page Name (the title of a post or the label)"&lt;/li&gt;&lt;li&gt;&amp;lt;data:blog.title/&amp;gt;: Just the Blog's Title&lt;/li&gt;&lt;li&gt;&amp;lt;data:blog.pageName/&amp;gt;: Just the Blog's Page Name&lt;/li&gt;&lt;/ul&gt;&lt;h4&gt;&lt;a name="bloggertitlecode" id="bloggertitlecode"&gt;&lt;/a&gt;How to Change the Page Title&lt;/h4&gt;&lt;p&gt;At last, I found a solution. As far as I can tell, this solution should not break any of Blogger's features. However, the blogs I am using it on all use a large amount of custom code, so it is difficult for me to tell. I know that it works for me. I hope that it works for you. If it doesn't, please leave a comment telling us what went wrong.&lt;/p&gt;&lt;p&gt;To change the page title:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Using your dashboard, go to "Edit HTML" in the "Layouts" section.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Back up your template. You can do this by clicking the "Download Full Template" link at the top of the page.&lt;/li&gt;&lt;li&gt;Replace the code "&amp;lt;title&amp;gt;&amp;lt;data:blog.pagetitle/&amp;gt;&amp;lt;/title&amp;gt;" with the code in the code block below. This line of code is near the top, just inside the head tag (or you may be able to just search for it).&lt;/li&gt;&lt;li&gt;Click the "Save Template" button at the bottom of the screen. A yellow banner should appear at the top stating that "Your changes have been saved," and inviting you to "View Blog."&lt;/li&gt;&lt;/ol&gt;&lt;h4&gt;The Code Block&lt;/h4&gt;&lt;p&gt;&amp;lt;b:if cond='data:blog.pageName == &amp;amp;quot;&amp;amp;quot;'&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.title/&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt; &amp;lt;b:else/&amp;gt;&lt;br /&gt; &amp;lt;title&amp;gt;&amp;lt;data:blog.pageName/&amp;gt;: &amp;lt;data:blog.title/&amp;gt;&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/b:if&amp;gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3226445239537350432-5909943288398349361?l=rebeccasworkbench-instructional.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebeccasworkbench-instructional.blogspot.com/feeds/5909943288398349361/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/changing-blogger-titles-from-blog-title.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/5909943288398349361'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/5909943288398349361'/><link rel='alternate' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/changing-blogger-titles-from-blog-title.html' title='Changing Blogger Titles from &quot;Blog Title: Label/Page Title&quot; to &quot;Label/PageTitle: Blog Title&quot;'/><author><name>Rebecca O'Connell</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3226445239537350432.post-6600230729674506716</id><published>2008-07-13T07:34:00.000-07:00</published><updated>2008-07-13T07:35:13.849-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Applescript'/><category scheme='http://www.blogger.com/atom/ns#' term='Omnifocus'/><title type='text'>OmniFocus and Applescript</title><content type='html'>&lt;ul&gt;&lt;li&gt;         &lt;a href="http://people.engr.ncsu.edu/rloconne/instructional/code/moving_an_omnifocus_project_to_a_designated_folder_using_applescript.htm"&gt;Moving An OmniFocus Project to A Designated Folder Using Applescript&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://people.engr.ncsu.edu/rloconne/instructional/tutorials/working_with_applescript_and_omnifocus.html"&gt;A (Really) Basic Introduction to Using Applescript with OmniFocus&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3226445239537350432-6600230729674506716?l=rebeccasworkbench-instructional.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebeccasworkbench-instructional.blogspot.com/feeds/6600230729674506716/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/omnifocus-and-applescript.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/6600230729674506716'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/6600230729674506716'/><link rel='alternate' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/omnifocus-and-applescript.html' title='OmniFocus and Applescript'/><author><name>Rebecca O'Connell</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3226445239537350432.post-4413913027129895042</id><published>2008-07-13T07:18:00.001-07:00</published><updated>2008-07-13T07:26:29.978-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HTML'/><category scheme='http://www.blogger.com/atom/ns#' term='Conditional-Comments'/><title type='text'>HTML Conditional Comments Tutorial Project</title><content type='html'>Aren&amp;#39;t class projects swell? &lt;a href="http://people.engr.ncsu.edu/rloconne/conditional-comments/index.html"&gt;This&lt;/a&gt; was a project I did for ENG 519.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3226445239537350432-4413913027129895042?l=rebeccasworkbench-instructional.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://rebeccasworkbench-instructional.blogspot.com/feeds/4413913027129895042/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/html-conditional-comments-tutorial.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/4413913027129895042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3226445239537350432/posts/default/4413913027129895042'/><link rel='alternate' type='text/html' href='http://rebeccasworkbench-instructional.blogspot.com/2008/07/html-conditional-comments-tutorial.html' title='HTML Conditional Comments Tutorial Project'/><author><name>Rebecca O'Connell</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
