You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
294 B

  1. import frappe
  2. base_template_path = "www/robots.txt"
  3. def get_context(context):
  4. robots_txt = (
  5. frappe.db.get_single_value("Website Settings", "robots_txt")
  6. or (frappe.local.conf.robots_txt and frappe.read_file(frappe.local.conf.robots_txt))
  7. or ""
  8. )
  9. return {"robots_txt": robots_txt}