This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
frappe
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
[minor] sitemap.xml is also programmable
version-14
Rushabh Mehta
8 years ago
parent
f609a478ae
commit
50d06d1202
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
frappe/website/render.py
+ 1
- 1
frappe/website/render.py
View File
@@ -79,7 +79,7 @@ def is_static_file(path):
if ('.' not in path):
return False
extn = path.rsplit('.', 1)[-1]
if extn in ('html', 'md', 'js'):
if extn in ('html', 'md', 'js'
, 'xml'
):
return False
for app in frappe.get_installed_apps():
Write
Preview
Loading…
Cancel
Save