silverstripe-blog/templates/Layout/BlogHolder.ss

22 lines
446 B
Scheme
Raw Normal View History

2007-09-07 00:33:58 +02:00
<% include BlogSideBar %>
<div id="BlogContent" class="blogcontent typography">
<% include BreadCrumbs %>
<% if Tag %>
<h3><% _t('VIEWINGTAGGED', 'Viewing entries tagged with') %> '$Tag'</h3>
2007-09-07 00:33:58 +02:00
<% end_if %>
<% if BlogEntries %>
<% control BlogEntries %>
<% include BlogSummary %>
<% end_control %>
<% else %>
<h3><% _t('NOENTRIES', 'There are no blog entries') %></h3>
2007-09-07 00:33:58 +02:00
<% end_if %>
<% include BlogPagination %>
</div>