silverstripe-blog/templates/widgets/BlogTagsWidget.ss

12 lines
226 B
Scheme

<% if $Tags %>
<ul>
<% loop $Tags %>
<li>
<a href="$Link" title="$Title">
<span class="arrow">&rarr;</span>
<span class="text">$Title</span>
</a>
</li>
<% end_loop %>
</ul>
<% end_if %>