bowman2001 / perplex

A Hugo theme to publish technical content (docs, news, blog, articles)
https://perplex.desider.at
Apache License 2.0
27 stars 11 forks source link

Custom robots.txt and sidemap.xml #176

Closed Kariton closed 1 month ago

Kariton commented 1 month ago

i have added a custom robots.txt and sitemap.xml because the include ones have no capabilities.

Disable entire path globaly:

params:
  robotsdisallow: 
    - /private/
    - /secret/

or set the robotsdisallow parameter to true per page:

---
title: "Private Page"
robotsdisallow: true
---
Kariton commented 1 month ago
params:
  robotsdisallow: 
    - /authors/

but sub-sites are still in sitemap.xml... needs fix

Kariton commented 1 month ago

after reviewing a few other repos and templates i realized that this kind of customization is better placed within the users files instead of the theme itself.