Sha256: 01f35f1e9bc5eeee7072547acfb6c5b7f9cf4c6a8af4666b52e43f86c3b25c4b
Contents?: true
Size: 876 Bytes
Versions: 2
Compression:
Stored size: 876 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 --> <%= stylesheet_link_tag 'mcms_pages/pages', 'mcms_pages/page_styles' %> <%= yield :head %> <!-- 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mcms_pages-0.0.3 | app/views/mcms_pages/layouts/mcms_layout.html.erb |
mcms_pages-0.0.2 | app/views/mcms_pages/layouts/mcms_layout.html.erb |