e334aed702
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
9 lines
509 B
HTML
9 lines
509 B
HTML
[% IF ( item.damaged or item.datedue or item.itemlost or item.transfertwhen or item.waiting ) %]
|
|
<link property="availability" href="http://schema.org/OutOfStock" />
|
|
[% ELSIF ( item.withdrawn ) %]
|
|
<link property="availability" href="http://schema.org/Discontinued" />
|
|
[% ELSIF ( item.itemnotforloan or item.notforloan_per_itemtype ) %]
|
|
<link property="availability" href="http://schema.org/InStoreOnly" />
|
|
[% ELSE %]
|
|
<link property="availability" href="http://schema.org/InStock" />
|
|
[% END %]
|