OurBigBook logoOurBigBook Docs OurBigBook logoOurBigBook.comSite Source code
The rel="canonical" HTML <head> tag tells Google the new preferred search result for each page.
You might want to set this up for example if you decide to publish your website both as:
  • a static website e.g. under https://cirosantilli.com
  • on OurBigBook Web e.g. under https://ourbigbook.com/cirosantilli
but you'd like the OurBigBook Web one to take precedence.
You can set this up by adding something like the following code to the <head> element in your ourbigbook.liquid.html:
<link rel="canonical" href="https://ourbigbook.com/cirosantilli/{{ toplevel_id }}">
you might also want to do that for all pages except your homepage with:
{% unless is_index_article %}<link rel="canonical" href="https://ourbigbook.com/cirosantilli/{{ toplevel_id }}">{% endunless %}

Ancestors (5)

  1. ourbigbook.liquid.html
  2. --template
  3. OurBigBook CLI options
  4. OurBigBook CLI
  5. Home