Bug 11529: Add templates for biblio title display. Unify display.
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / biblio-title.inc
1 [% IF ( biblio.title ) %]
2     <span class="biblio-title">[% biblio.title | html %]</span>
3 [% ELSE %]
4     No title
5 [% END %]
6 [% FOREACH subtitle IN biblio.subtitle.split(' \| ') %][% IF Koha.Preference('marcflavour')=='UNIMARC' %],[% END %]
7     <span class="subtitle">[% subtitle | html %]</span>
8 [% END %]
9 [% IF ( biblio.part_number ) %]
10     <span class="part-number">[% biblio.part_number | html %]</span>
11 [% END %]
12 [% IF ( biblio.part_name ) %]
13     <span class="part-name">[% biblio.part_name | html %]</span>
14 [% END %]