I am using web.py for a web project. I have the following url structure
urls = (
'/', 'Home',
'/register','Register',
'/postregistration', 'PostRegistration',
'/login', 'Login',
'/check-login', 'CheckLogin',
'/logout', 'Logout',
'/post-activity', 'PostActivity',
'/profile/(.*)/info', 'userInfo',
'/profile/(.*)', 'Profile',
'/abcd', 'abcd'
)
Everything works fine but when i try to visit pages which have dynamic link like "/profile/anything" my web page loads without the css & js added in base layout. On inspecting and checking sources i noticed that on these urls my all css & js file have html content inside them.