Files
nairobi/app/views/shared/_header.html.erb
Diego Calvo 68a9b46726
Some checks failed
tests / tests (0, 5) (push) Has been cancelled
tests / tests (1, 5) (push) Has been cancelled
tests / tests (2, 5) (push) Has been cancelled
tests / tests (3, 5) (push) Has been cancelled
tests / tests (4, 5) (push) Has been cancelled
tests / coveralls (push) Has been cancelled
schema / schema (push) Has been cancelled
full width banner image
2025-12-11 11:28:59 +03:00

29 lines
1.0 KiB
Plaintext

<% if header.present? %>
<div class="header-card jumbo highlight">
<div class="row">
<div class="small-12 medium-6 column <%= "medium-9 small-centered text-center" if header.image.blank? %>">
<span><%= header.label %></span>
<h1><%= header.title %></h1>
<p class="lead"><%= header.description %></p>
<% if header.link_text.present? && header.link_url.present? %>
<div class="small-12 medium-6 large-4 <%= "small-centered" if header.image.blank? %>">
<%= link_to header.link_text, header.link_url, class: "button expanded large" %>
</div>
<% end %>
</div>
<% if header.image.present? %>
<div class="small-12 medium-6 column">
<%= image_tag(header.image.variant(:large),
class: "margin",
style: "width: 100%;",
alt: header.image.title) %>
</div>
<% end %>
</div>
</div>
<div class="background-header"></div>
<% end %>