mirror of
https://github.com/a2nt/silverstripe-webpack.git
synced 2024-10-22 17:05:31 +02:00
13 lines
409 B
Scheme
13 lines
409 B
Scheme
<% if $PriceRange %>
|
|
<div class="price">
|
|
<strong class="value">$PriceRange.Min.Nice</strong>
|
|
<% if $PriceRange.HasRange %>
|
|
- <strong class="value">$PriceRange.Max.Nice</strong>
|
|
<% end_if %>
|
|
<span class="currency">$Price.Currency</span>
|
|
</div>
|
|
<% else_if $Price %>
|
|
<div class="price">
|
|
<strong class="value">$Price.Nice</strong> <span class="currency">$Price.Currency</span>
|
|
</div>
|
|
<% end_if %> |