Files
nairobi/app/views/shared/_banner.html.erb
2019-03-13 13:17:42 +01:00

8 lines
318 B
Plaintext

<% banner = @banners.sample %>
<div class="banner" style="background-color:<%= banner.background_color %>;">
<%= link_to banner.target_url do %>
<h2 style="color:<%= banner.font_color %>;"><%= banner.title %></h2>
<h3 style="color:<%= banner.font_color %>;"><%= banner.description %></h3>
<% end %>
</div>