Sha256: 444fc4713229aa5d915e337db137cd4f2cbe503ce47ef32600568d2ee02a762e
Contents?: true
Size: 919 Bytes
Versions: 1
Compression:
Stored size: 919 Bytes
Contents
<!-- @File Name : application.html.erb @Company Name : Mindfire Solutions Private Limited @Creator Name : Vikram Kumar Mishra @Date Created : 2012-06-05 @Date Modified : @Last Modification Details : @Purpose : This is main HTML file responsible for rendering of all view, including JS files and CSS files. --> <!DOCTYPE html> <html> <head> <title>Mcms Pages</title> <!-- render partial stylesheets --> <%= render 'mcms_pages/layouts/stylesheets' %> <!-- render partial javascript --> <%= render 'mcms_pages/layouts/javascript' %> <!-- rails method to prevent cross site request forgery --> <%= csrf_meta_tags %> </head> <body> <!-- Output of .erb file will be rendered here as yield, This is rails standard method. --> <%= yield %> </body> </html>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mcms_pages-0.0.1 | app/views/mcms_pages/layouts/mcms_layout.html.erb |