mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
23 lines
914 B
Scheme
23 lines
914 B
Scheme
<tr class="itemRow $EvenOdd $FirstLast">
|
|
<td class="image">
|
|
<% if $Image %>
|
|
<a href="$Link" title="<%t SilverShop\Generic.ReadMoreTitle "Click here to read more on "{Title}"" Title=$TableTitle %>">
|
|
<img src="$Image.Fill(100,100).AbsoluteURL" alt="$Buyable.Title"/>
|
|
</a>
|
|
<% end_if %>
|
|
</td>
|
|
<td class="product title" scope="row">
|
|
<% if $Link %>
|
|
<a href="$Link" title="<%t SilverShop\Generic.ReadMoreTitle "Click here to read more on "{Title}"" Title=$TableTitle %>">$TableTitle</a>
|
|
<% else %>
|
|
$TableTitle
|
|
<% end_if %>
|
|
<% if $SubTitle %>
|
|
<span class="subtitle">$SubTitle</span>
|
|
<% end_if %>
|
|
</td>
|
|
<td class="center unitprice">$UnitPrice.Nice</td>
|
|
<td class="center quantity">$Quantity</td>
|
|
<td class="right total">$Total.Nice</td>
|
|
</tr>
|