13 lines
407 B
Plaintext
13 lines
407 B
Plaintext
<header class="py-10">
|
|
<div class="max-w-6xl md:flex md:gap-x-10 mx-auto px-4 sm:px-6 lg:px-8">
|
|
<% if @title.present? %>
|
|
<h1 class="text-3xl font-bold text-white">
|
|
<%= @title %>
|
|
</h1>
|
|
<% end %>
|
|
<nav class="md:grow flex gap-x-4 <%= @title.present? ? "justify-end" : "justify-start" %>" aria-label="Tabs">
|
|
<%= render partial: @tabnav_partial %>
|
|
</nav>
|
|
</div>
|
|
</header>
|