cyberstammtisch-silverstripe/themes/starter/templates/Includes/BlogPostPaginatedList.ss
2021-10-20 13:45:30 +02:00

15 lines
677 B
Scheme

<% if $PaginatedList %>
<% if $CurrentProfile %>
<h2 class="h6 blog-post-heading"><%t BlogPostPaginatedList.POSTS_BY 'Posts by {firstname} {lastname} for {title}' firstname=$CurrentProfile.FirstName lastname=$CurrentProfile.Surname title=$Title %></h2>
<% end_if %>
<% loop $PaginatedList %>
<article class="blog-entry blog-entry--paginated $EvenOdd">
<% include SilverStripe\\Blog\\PostSummary %>
</article>
<% end_loop %>
<% with $PaginatedList %>
<% include SilverStripe\\Blog\\Pagination %>
<% end_with %>
<% else %>
<p><%t BlogPostPaginatedList.NO_POSTS "There are no blog posts" %></p>
<% end_if %>