I want that search engines do not crawl /author/
and /page/[x]/
pages. In order to do so,following this link Add No Index meta tags to author pages, I have used {{{block "header"}}}
before </head>
tag and the following code in author.hbs
and page.hbs
{{#contentFor "header"}}
<meta name="robots" content="noindex">
{{/contentFor}}
After that I install the them, it is only the /author/
page that contains <meta name="robots" content="noindex">
. But /page/[x]/
does not contains.
How to inject <meta name="robots" content="noindex">
in page.hbs
?