Skip to content

Instantly share code, notes, and snippets.

@furu
Created June 27, 2013 03:22
Show Gist options
  • Save furu/5873704 to your computer and use it in GitHub Desktop.
Save furu/5873704 to your computer and use it in GitHub Desktop.
<!-- 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