cyberstammtisch-silverstripe/themes/starter/templates/Includes/NewsItem.ss

24 lines
649 B
Scheme
Raw Normal View History

2021-10-20 11:45:30 +00:00
<footer itemscope itemtype="http://schema.org/NewsArticle">
<address class="meta-info">
<% if $Author %>
$Author,
<% end_if %>
<% if $Date %>
<time datetime="{$Date.Format(c)}" itemprop="datePublished">$Date.Nice</time>
<% end_if %>
</address>
</footer>
<% if $FeaturedImage %>
<figure class="right">
$FeaturedImage.ScaleWidth(300)
</figure>
<% end_if %>
<% if $Content.RichLinks %>
$Content.RichLinks
<% else %>
$Content
<% end_if %>
<p><a href="$Parent.Link" class="hidden-print"><i class="fa fa-angle-left mr-1" aria-hidden="true"></i><%t CWP.News.BACK "Back to the news" %></a></p>
$Form