Skip to content

Commit

Permalink
_includes/head.html: fix the robots tag
Browse files Browse the repository at this point in the history
I am surprised it did anything
  • Loading branch information
Mikaela committed Jun 2, 2024
1 parent 40924ab commit 663b769
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="nofollow, {{ page.robots | default: site.robots | default: "nofollow" }}">
<meta name="robots" content="nofollow">
<meta name="robots" content="{% if page.robots %}{{ page.robots }} {% else %}{{ site.robots | default: 'nofollow' }}{% endif %}">
<meta name="msvalidate.01" content="DDF472BEC8E65C680D65A24256C33B24">
<link rel="icon prefetch" href="{{site.icon}}">
<title>{% if page.title %}{{ page.title }} ~~ {{ site.title | strip_html }}{% else %}{{ site.title }}{% endif %}</title>
Expand Down

0 comments on commit 663b769

Please sign in to comment.