24 lines
601 B
Scheme
Raw Normal View History

<% require css('silverstripe/blog: client/dist/styles/main.css') %>
2015-03-23 11:18:02 +13:00
<div class="blog-entry content-container <% if $SideBarView %>unit size3of4<% end_if %>">
2017-09-21 09:10:21 +12:00
<% include SilverStripe\\Blog\\MemberDetails %>
2015-03-23 11:18:02 +13:00
2015-11-12 12:20:11 +13:00
<% if $PaginatedList.Exists %>
<h2>Posts by $CurrentProfile.FirstName $CurrentProfile.Surname for $Title:</h2>
<% loop $PaginatedList %>
2017-09-21 09:10:21 +12:00
<% include SilverStripe\\Blog\\PostSummary %>
2015-11-12 12:20:11 +13:00
<% end_loop %>
<% end_if %>
2015-03-23 11:18:02 +13:00
2015-11-12 12:20:11 +13:00
$Form
$CommentsForm
<% with $PaginatedList %>
2017-09-21 09:10:21 +12:00
<% include SilverStripe\\Blog\\Pagination %>
2015-11-12 12:20:11 +13:00
<% end_with %>
2015-03-23 11:18:02 +13:00
</div>
2017-09-21 09:10:21 +12:00
<% include SilverStripe\\Blog\\BlogSideBar %>