ojroques / hugo-researcher

A simple resume theme for Hugo
GNU General Public License v3.0
229 stars 130 forks source link

Add option to ask crawlers to not index a page #32

Closed Sbozzolo closed 1 year ago

Sbozzolo commented 1 year ago

With this commit, pages can be marked as "noindex" to avoid indexing from search engines. To activate this tag on a give page, the option noindex has to be set true at the beginning on the markdown file, as in:

+++
title = "Example"
noindex = true
+++
ojroques commented 1 year ago

Thanks!