Skip to content

Instantly share code, notes, and snippets.

@eccyan
Created January 25, 2012 05:30
Show Gist options
  • Save eccyan/1674927 to your computer and use it in GitHub Desktop.
Save eccyan/1674927 to your computer and use it in GitHub Desktop.
Rails/ERBで部分テンプレート毎にheadの内容を変える ref: http://qiita.com/items/1877
<% content_for :header do -%>
<meta property="og:title" content="title" />
<meta property="og:description" content="description" />
<% end -%>
...
...
<head>
<%= yield :header %>
</head>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment