mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 07:58:02 +00:00
18 lines
494 B
Plaintext
18 lines
494 B
Plaintext
<div<%= @id && %( id="#{@id}") %> class="<%= ['admonitionblock',(attr :name),role].compact * ' ' %>">
|
|
<table>
|
|
<tr>
|
|
<td class="icon" title="<%= @caption %>">
|
|
<svg class="icon">
|
|
<use href="<%= icon_uri(attr :name) %>#<%= attr :name %>" alt="<%= @caption %>"></use>
|
|
</svg>
|
|
</td>
|
|
<td class="content"><%
|
|
if title? %>
|
|
<div class="title"><%= title %></div><%
|
|
end %>
|
|
<%= content %>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|