mirror of
https://github.com/mikaela/mikaela.github.io/
synced 2024-11-16 17:09:28 +01:00
Allow overriding robots tag per-site & per-page
This commit is contained in:
parent
d1b946127f
commit
8ab675d87d
@ -12,6 +12,8 @@ baseurl: "" # the subpath of your site, e.g. /blog/
|
|||||||
# At least it's just a static page.
|
# At least it's just a static page.
|
||||||
#url: "https://www.aminda.eu" # the base hostname & protocol for your site
|
#url: "https://www.aminda.eu" # the base hostname & protocol for your site
|
||||||
url: "https://aminda.eu" # the base hostname & protocol for your site
|
url: "https://aminda.eu" # the base hostname & protocol for your site
|
||||||
|
# Default meta-robots tags, can be set per-page
|
||||||
|
robots: noai, nofollow, noindex
|
||||||
|
|
||||||
codeberg_username: Mikaela
|
codeberg_username: Mikaela
|
||||||
github_username: Mikaela
|
github_username: Mikaela
|
||||||
|
2
_includes/head.html
vendored
2
_includes/head.html
vendored
@ -2,7 +2,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="robots" content="noindex, nofollow, noai">
|
<meta name="robots" content="{{ page.robots | default: site.robots | default: "" }}">
|
||||||
<link rel="icon prefetch" href="{{site.icon}}">
|
<link rel="icon prefetch" href="{{site.icon}}">
|
||||||
<title>{% if page.title %}{{ page.title }} ~~ {{ site.title | strip_html }}{% else %}{{ site.title }}{% endif %}</title>
|
<title>{% if page.title %}{{ page.title }} ~~ {{ site.title | strip_html }}{% else %}{{ site.title }}{% endif %}</title>
|
||||||
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description | strip_html | strip_newlines }}{% endif %}">
|
||||||
|
Loading…
Reference in New Issue
Block a user