x
1
2
3
4
5
6
<article class="vt-card">
<header>
<div class="vt-card--title">Card with title</div>
</header>
<p>Some content.</p>
</article>
1
2
3
4
<%= vt_card do |card| %>
<% card.with_title { "Card with title" } %>
<p>Some content.</p>
<% end %>