mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
c044f8c7e9
Renamed auto-template entities from ".ss" to "_ss" to avoid clashes with YAML namespaces
25 lines
730 B
Scheme
25 lines
730 B
Scheme
<% include BlogSideBar %>
|
|
|
|
<div id="BlogContent" class="blogcontent typography">
|
|
|
|
<% include BreadCrumbs %>
|
|
|
|
<% if SelectedTag %>
|
|
<h3><% _t('BlogTree_ss.VIEWINGTAGGED', 'Viewing entries tagged with') %> '$SelectedTag'</h3>
|
|
<% else_if SelectedDate %>
|
|
<h3><% _t('BlogTree_ss.VIEWINGPOSTEDIN', 'Viewing entries posted in') %> $SelectedNiceDate</h3>
|
|
<% else_if SelectedAuthor %>
|
|
<h3><% _t('BlogTree_ss.VIEWINGPOSTEDBY', 'Viewing entries posted by') %> $SelectedAuthor</h3>
|
|
<% end_if %>
|
|
|
|
<% if BlogEntries %>
|
|
<% loop BlogEntries %>
|
|
<% include BlogSummary %>
|
|
<% end_loop %>
|
|
<% else %>
|
|
<h2><% _t('BlogTree_ss.NOENTRIES', 'There are no blog entries') %></h2>
|
|
<% end_if %>
|
|
|
|
<% include BlogPagination %>
|
|
|
|
</div> |