Skip to content

Instantly share code, notes, and snippets.

@dt1973
Created April 26, 2015 21:52
Show Gist options
  • Save dt1973/829e5ebbfa93e0c1f8a0 to your computer and use it in GitHub Desktop.
Save dt1973/829e5ebbfa93e0c1f8a0 to your computer and use it in GitHub Desktop.

In this scenario

views/articles/_post.html.erb

<%= render partial: "shared/info" %>

views/stories/_post.html.erb

<%= render partial: "shared/info" %>

How do I do something like this?

views/shared/_info.html.erb

<% if views/articles/_post.html.erb %>
  <p>Foo</p>
<% elsif views/stories/_post.html.erb %>
  <p>Bar</p>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment