mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
d33e209ee5
Updated template elements for 3.0. Made html follow proper heading hierarchy Optimized generated html so it can be more easily styled.
32 lines
661 B
Scheme
32 lines
661 B
Scheme
<% include BlogSideBar %>
|
|
|
|
<div id="BlogContent" class="blogcontent typography">
|
|
|
|
<% include BreadCrumbs %>
|
|
|
|
<% if SelectedTag %>
|
|
<div class="selectedTag">
|
|
<em>
|
|
<% _t('VIEWINGTAGGED', 'Viewing entries tagged with') %> '$SelectedTag'
|
|
</em>
|
|
</div>
|
|
<% else_if SelectedDate %>
|
|
<div class="selectedTag">
|
|
<em>
|
|
<% _t('VIEWINGPOSTEDIN', 'Viewing entries posted in') %> $SelectedNiceDate
|
|
</em>
|
|
</div>
|
|
<% end_if %>
|
|
|
|
<% if BlogEntries %>
|
|
<% loop BlogEntries %>
|
|
<% include BlogSummary %>
|
|
<% end_loop %>
|
|
<% else %>
|
|
<h2><% _t('NOENTRIES', 'There are no blog entries') %></h2>
|
|
<% end_if %>
|
|
|
|
<% include BlogPagination %>
|
|
|
|
</div>
|