Creation of Error page in Radiant CMS: By default when the radiant user requests the URL that doesn’t exist on site , the server will return HTTP status 404 and a page titled “Page Not Found” in the style of admin section. However we can always customize this page as we want. Below are the … Continue reading Usage and Best Practices for RADIANT CMS-Part4
Tag: coding standards
Rails Coding Standards
IN ESSENCE: ALL CODE SHOULD BE READABLE!# DO NOT OPTIMISE for performance - OPTIMISE FOR CLARITY OF CODE# STYLE: use 2 spaces for indent (not tabs)# STYLE: Line up hash arrows for readability# STYLE: put spaces around => hash arrows# STYLE: put spaces after ',' in method params - but none between method names and … Continue reading Rails Coding Standards
