Skip to content

Instantly share code, notes, and snippets.

@LaurMo
Created September 23, 2013 16:31
Show Gist options
  • Save LaurMo/6673196 to your computer and use it in GitHub Desktop.
Save LaurMo/6673196 to your computer and use it in GitHub Desktop.
related content erb
<% @related_content.each do |content| %>
<% if content.title.present? %>
<%= content.title %>
<% end %>
<% if content.author.name.present? %>
<%= content.author.name %>
<% end %>
<% if content.published_date.present? %>
<%= content.published_date %>
<% end %>
<% if content.image.present? %>
<%= content.image.url(:medium) %>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment