Skip to content

Commit

Permalink
API Stop using deprecated API
Browse files Browse the repository at this point in the history
  • Loading branch information
emteknetnz committed Nov 24, 2022
1 parent a23749c commit 27bd89c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/Layout/Page.ss
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<% end_if %>
$Form
<% include RelatedPages %>
$CommentsForm
$CommentsForm $ElementalArea
</section>
<% if $Children %>
<aside class="col-lg-3 offset-lg-1">
Expand Down
4 changes: 2 additions & 2 deletions templates/SilverStripe/Blog/Includes/EntryMeta.ss
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<% if $Categories.exists %>
<%t Blog.PostedIn "Posted in" %>
<% loop $Categories %>
<a href="$Link" title="$Title">$Title</a><% if not Last %>, <% end_if %>
<a href="$Link" title="$Title">$Title</a><% if not $IsLast %>, <% end_if %>
<% end_loop %>
<% end_if %>
<% if $Categories && $Tags %><br /><% end_if %>
<% if $Tags.exists %>
<%t Blog.Tagged "Tagged" %>
<% loop $Tags %>
<a href="$Link" title="$Title">$Title</a><% if not Last %>, <% end_if %>
<a href="$Link" title="$Title">$Title</a><% if not $IsLast %>, <% end_if %>
<% end_loop %>
<% end_if %>
</p>
Expand Down

0 comments on commit 27bd89c

Please sign in to comment.