Created
June 27, 2013 03:22
-
-
Save furu/5873704 to your computer and use it in GitHub Desktop.
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
<!-- layout.erb --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<%= yield %> <!-- ← ここに contents.erb の内容が埋め込まれる --> | |
</body> | |
</html> | |
<!-- contents.erb --> | |
<p>hi!</p> | |
<!-- 実際に返されるレスポンス --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
</head> | |
<body> | |
<p>hi!</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment