2019-09-07 03:39:49 +02:00
|
|
|
<% if $Categories %>
|
2021-01-14 17:56:34 +01:00
|
|
|
<div class="blog__categories">
|
2019-09-07 03:39:49 +02:00
|
|
|
<ul class="list-unstyled list-inline">
|
|
|
|
<% loop $Categories %>
|
|
|
|
<li class="list-inline-item">
|
2023-08-04 00:28:22 +02:00
|
|
|
<a href="$Link" class="<% if $Up.Controller.getParentController.CurrentCategory.ID == $ID %>active<% end_if %>">
|
2019-09-07 03:39:49 +02:00
|
|
|
<span class="text">$Title</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% end_loop %>
|
2023-08-04 00:28:22 +02:00
|
|
|
<% if $Controller.getParentController.CurrentCategory %>
|
|
|
|
<li class="list-inline-item">
|
|
|
|
<a href="$Controller.getParentController.Link" class="view-all">
|
|
|
|
<span class="text">View All</span>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
<% end_if %>
|
2019-09-07 03:39:49 +02:00
|
|
|
</ul>
|
2021-01-14 17:56:34 +01:00
|
|
|
</div>
|
2019-09-07 03:39:49 +02:00
|
|
|
<% end_if %>
|