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.
21 lines
515 B
Scheme
21 lines
515 B
Scheme
<div id="TrackBacks_holder" class="typography">
|
|
<h4>TrackBacks</h4>
|
|
|
|
<% if TrackBacks %>
|
|
<ul id="TrackBacks">
|
|
<% loop TrackBacks %>
|
|
<li>
|
|
<a href="$Url"><% if Title %>$Title<% else %>$Url<% end_if %></a> <span class="date">on $Created.Nice</span>
|
|
<% if Excerpt %><p class="excerpt">$Excerpt</p><% end_if %>
|
|
</li>
|
|
<% end_loop %>
|
|
</ul>
|
|
<% else %>
|
|
<p>No TrackBacks have been submitted for this page.</p>
|
|
<% end_if %>
|
|
|
|
<a href="$TrackBackPingLink">Trackback URL for this page.</a>
|
|
|
|
</div>
|
|
|