mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
24 lines
713 B
Scheme
24 lines
713 B
Scheme
<% require css('silverstripe/blog: client/dist/styles/main.css') %>
|
|
|
|
<div class="blog-entry content-container <% if $SideBarView %>unit size3of4<% end_if %>">
|
|
|
|
<% include SilverStripe\\Blog\\MemberDetails %>
|
|
|
|
<% if $PaginatedList.Exists %>
|
|
<h2><%t SilverStripe\\Blog\\Model\\Blog.PostsByUser 'Posts by {firstname} {surname} for {title}' firstname=$CurrentProfile.FirstName surname=$CurrentProfile.Surname title=$Title %></h2>
|
|
<% loop $PaginatedList %>
|
|
<% include SilverStripe\\Blog\\PostSummary %>
|
|
<% end_loop %>
|
|
<% end_if %>
|
|
|
|
$Form
|
|
$CommentsForm
|
|
|
|
<% with $PaginatedList %>
|
|
<% include SilverStripe\\Blog\\Pagination %>
|
|
<% end_with %>
|
|
|
|
</div>
|
|
|
|
<% include SilverStripe\\Blog\\BlogSideBar %>
|