cyberstammtisch-silverstripe/themes/starter/templates/Includes/PageShowcaseQuicklinks.ss

19 lines
566 B
Scheme
Raw Normal View History

2021-10-20 11:45:30 +00:00
<% if $QuickLinks %>
<div class="col-md-4 page-showcase-quicklinks">
<h2><%t CWP.Home.Quicklinks.Title "Quicklinks" %></h2>
<ul>
<% loop $QuickLinks %>
<li>
<% if $ExternalLink %>
<a href="$ExternalLink">
<% else %>
<a href="$InternalLink.Link">
<% end_if %>
$Title
</a>
</li>
<% end_loop %>
</ul>
</div>
<% end_if %>