Skip to content

Instantly share code, notes, and snippets.

@jcuffe
Created July 4, 2012 01:18
Show Gist options
  • Save jcuffe/3044555 to your computer and use it in GitHub Desktop.
Save jcuffe/3044555 to your computer and use it in GitHub Desktop.
<%= content_tag :header do %>
<%= content_tag :div, content_tag(:h2, '1-888-761-2627'), id: "header-left", class: "cms-editable" %>
<%= content_tag :div, image_tag("sponsornation-logo.png", :size => "662x218"), id: "header-mid" %>
<%= content_tag :div, render(partial: 'shared/social_buttons'), id: "header-right" %>
<% end %>
--- VS ---
<header>
<div id="header-left" class="cms-editable">
<h2> 1-888-761-2627</h2>
</div>
<div id="header-mid">
<%= image_tag("sponsornation-logo.png", :size => "662x218") %>
</div>
<div id="header-right">
<%= render partial: 'shared/social_buttons' %>
</div>
</header>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment