silverstripe-blog/templates/Layout/BlogHolder.ss

24 lines
576 B
Scheme
Raw Normal View History

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