Sha256: 99341590d7365a1f2b44289852cad224b931bf238639771b2a198861dd46db2f

Contents?: true

Size: 561 Bytes

Versions: 2

Compression:

Stored size: 561 Bytes

Contents

<% yield p = np %>

<div class="border border-gray-300 rounded-md py-5 px-6 bg-gray-50 space-y">
  <div class="space-y-2">
    <% if p.content_for? :title %>
      <h2 class="text-base font-semibold">
        <%= p.content_for :title %>
      </h2>
    <% end %>

    <% if p.content_for? :description %>
      <p class="text-gray-400 font-light leading-normal">
        <%= p.content_for :description %>
      </p>
    <% end %>
  </div>

  <% if p.content_for? :body %>
    <div class="space-y">
      <%= p.content_for :body %>
    </div>
  <% end %>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bullet_train-themes-light-1.0.35 app/views/themes/light/_well.html.erb
bullet_train-themes-light-1.0.34 app/views/themes/light/_well.html.erb