diff options
author | Valentin Popov <info@valentineus.link> | 2018-05-15 14:53:48 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-05-15 14:53:48 +0300 |
commit | 7aff2fd1861af7fb454cea1d502878e6062771c6 (patch) | |
tree | f907e3d485f00cde5307221c80e60abf89595755 /_pages | |
parent | f0e1ca0b338c61c3537b88aa65fae12b046b3752 (diff) | |
download | popov.link-7aff2fd1861af7fb454cea1d502878e6062771c6.tar.xz popov.link-7aff2fd1861af7fb454cea1d502878e6062771c6.zip |
Flexible exception list
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_pages')
-rw-r--r-- | _pages/robots.txt | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/_pages/robots.txt b/_pages/robots.txt index c4c4d2c..7ad8e77 100644 --- a/_pages/robots.txt +++ b/_pages/robots.txt @@ -5,6 +5,9 @@ layout: null User-agent: * Allow: {{ site.baseurl | relative_url | uri_escape }} -Disallow: {{ "/404.html" | relative_url | uri_escape }} -Sitemap: {{ "sitemap.xml" | absolute_url | uri_escape }}
\ No newline at end of file +{% for link in site.data.robots_disallow %} + Disallow: {{ link.path | relative_url | uri_escape }} +{% endfor %} + +Sitemap: {{ "sitemap.xml" | absolute_url | uri_escape }} |