mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
23 lines
550 B
Scheme
23 lines
550 B
Scheme
<% 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
|
|
$CommentsForm
|
|
|
|
<% with $PaginatedList %>
|
|
<% include Pagination %>
|
|
<% end_with %>
|
|
|
|
</div>
|
|
|
|
<% include BlogSideBar %> |