silverstripe-blog/templates/Layout/Blog_profile.ss

23 lines
550 B
Scheme
Raw Normal View History

2015-03-22 23:18:02 +01:00
<% require themedCSS('blog', 'blog') %>
<div class="blog-entry content-container <% if $SideBarView %>unit size3of4<% end_if %>">
<% include MemberDetails %>
<% if $PaginatedList.Exists %>
<h2>Posts by $CurrentProfile.FirstName $CurrentProfile.Surname for $Title:</h2>
<% loop $PaginatedList %>
<% include PostSummary %>
<% end_loop %>
<% end_if %>
$Form
2015-04-13 06:20:52 +02:00
$CommentsForm
2015-03-22 23:18:02 +01:00
<% with $PaginatedList %>
<% include Pagination %>
<% end_with %>
</div>
<% include BlogSideBar %>