Sha256: eeb6db293e7f56f3243d47b1b7d933b08ffa8409d69c5fa088553dfceffd2ff7
Contents?: true
Size: 705 Bytes
Versions: 5
Compression:
Stored size: 705 Bytes
Contents
<% yield p = np %> <div class="border border-gray-300 dark:border-opacity-10 rounded-md py-4 px-5 bg-gray-50 dark:bg-opacity-10 space-y"> <% if p.content_for?(:title) || p.content_for?(:description) %> <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> <% end %> <% if p.content_for? :body %> <div class="space-y"> <%= p.content_for :body %> </div> <% end %> </div>
Version data entries
5 entries across 5 versions & 1 rubygems