Created
March 20, 2011 22:27
-
-
Save adammiribyan/878740 to your computer and use it in GitHub Desktop.
rails app template layout file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| !!! 5 | |
| %html{:lang => "en-US"} | |
| %head | |
| %meta{:content => "text/html; charset=utf-8", "http-equiv" => "Content-Type"} | |
| %title | |
| = yield (:title) | |
| = stylesheet_link_tag "reset", "application" | |
| = javascript_include_tag "jquery.min", "application", "rails" | |
| = csrf_meta_tag | |
| %body | |
| = yield |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment