seitime-frappe/frappe/www/robots.py
Suraj Shetty c0c5b2ebdd
style: format all python files using black (#16453)
Co-authored-by: Frappe Bot <developers@frappe.io>
2022-04-12 10:59:25 +05:30

13 lines
294 B
Python

import frappe
base_template_path = "www/robots.txt"
def get_context(context):
robots_txt = (
frappe.db.get_single_value("Website Settings", "robots_txt")
or (frappe.local.conf.robots_txt and frappe.read_file(frappe.local.conf.robots_txt))
or ""
)
return {"robots_txt": robots_txt}