mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
14 lines
226 B
Scheme
14 lines
226 B
Scheme
<% if $Posts %>
|
|
<div class="blog-posts__recent">
|
|
<ul class="list-unstyled">
|
|
<% loop $Posts %>
|
|
<li>
|
|
<a href="$Link">
|
|
<span class="text">$Title</span>
|
|
</a>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
</div>
|
|
<% end_if %>
|