How I modify the Title of the Home in blogger

1

good morning. I want you to help me modify the title of the Home of my blog to have a better SEO when searching in google.

For example:

My blog is called: Stackoverflow and I want to put the Home:

Stackoverflow | Blod de Programadores

But I do not know how I have to modify the title of blogger

<title><data:view.title.escaped/></title>

I put the label <title><data:view.title.escaped/> | Blod de Programadores</title> But I get "Blod de Programadores" everywhere and I want it to be seen only on the home page. I think we need to add a conditional, but I do not know how to add it.

    
asked by JhonnySanz 14.06.2017 в 20:51
source

1 answer

2
  • Make a backup copy of your template: "Template> Create / Restore backup copy"

  • Edit the template: "Template & Edit HTML"

  • Locate this line of code: CTRL + F

  • and replace it with this code:

        <b:if cond='data:blog.pageType == &quot;index&quot;'>
      <title><data:blog.title/></title>
    <b:else/>
      <title><data:blog.pageName/> | <data:blog.title/></title>
    </b:if>
    
  • Save the template and view the results
  • answered by 14.06.2017 в 21:58