|
62 | 62 | <xsl:template name="pubtype"> |
63 | 63 | <xsl:variable name="genre" select="substring-after(mods:genre[@type='intern']/@valueURI, '#')"/> |
64 | 64 |
|
65 | | - <span class="label-info badge bg-secondary mr-1 ubo-hover-pointer" title="{i18n:translate('ubo.genre')}" |
| 65 | + <span class="label-info badge bg-secondary me-1 ubo-hover-pointer" title="{i18n:translate('ubo.genre')}" |
66 | 66 | onclick="location.assign('{$WebApplicationBaseURL}servlets/solr/select?sort=modified+desc&q={encoder:encode(concat($fq, '+genre:"', $genre, '"'))}')"> |
67 | 67 | <xsl:apply-templates select="mods:genre[@type='intern']"/> |
68 | 68 | <xsl:for-each select="mods:relatedItem[@type='host']/mods:genre[@type='intern']"> |
|
76 | 76 | <xsl:if test="check:currentUserIsAdmin()"> |
77 | 77 | <xsl:variable name="kdsf-pubtype" select="mods:classification[@generator='xpathmapping2kdsfPublicationType-mycore']"/> |
78 | 78 | <xsl:for-each select="$kdsf-pubtype"> |
79 | | - <span class="label-info badge bg-warning text-white mr-1" title="{i18n:translate('ubo.publication.type.kdsf')}"> |
| 79 | + <span class="label-info badge bg-warning text-white me-1" title="{i18n:translate('ubo.publication.type.kdsf')}"> |
80 | 80 | <xsl:variable name="categid" select="substring-after(@valueURI, '#')"/> |
81 | 81 | <xsl:value-of select="mcrxsl:getDisplayName('kdsfPublicationType', $categid)"/> |
82 | 82 | </span> |
83 | 83 | </xsl:for-each> |
84 | 84 |
|
85 | 85 | <xsl:variable name="kdsf-doctype" select="mods:classification[@generator='xpathmapping2kdsfDocumentType-mycore']"/> |
86 | 86 | <xsl:for-each select="$kdsf-doctype"> |
87 | | - <span class="label-info badge bg-info text-white mr-1" title="{i18n:translate('ubo.document.type.kdsf')}"> |
| 87 | + <span class="label-info badge bg-info text-white me-1" title="{i18n:translate('ubo.document.type.kdsf')}"> |
88 | 88 | <xsl:variable name="categid" select="substring-after(@valueURI, '#')"/> |
89 | 89 | <xsl:value-of select="mcrxsl:getDisplayName('kdsfDocumentType', $categid)"/> |
90 | 90 | </span> |
|
95 | 95 | <!-- ============ Ausgabe Fach ============ --> |
96 | 96 |
|
97 | 97 | <xsl:template match="mods:mods/mods:classification[contains(@authorityURI,'fachreferate')]" mode="label-info"> |
98 | | - <span class="label-info badge bg-secondary mr-1 ubo-hover-pointer" title="{i18n:translate('facets.facet.subject')}" |
| 98 | + <span class="label-info badge bg-secondary me-1 ubo-hover-pointer" title="{i18n:translate('facets.facet.subject')}" |
99 | 99 | onclick="location.assign('{$WebApplicationBaseURL}servlets/solr/select?sort=modified+desc&q={encoder:encode(concat($fq, '+subject:"', substring-after(@valueURI,'#'),'"'))}')"> |
100 | 100 | <xsl:call-template name="output.category"> |
101 | 101 | <xsl:with-param name="classID" select="'fachreferate'" /> |
|
107 | 107 | <!-- ========== Ausgabe Fakultät ========== --> |
108 | 108 |
|
109 | 109 | <xsl:template match="mods:classification[contains(@authorityURI,'ORIGIN')]" mode="label-info"> |
110 | | - <span class="label-info badge bg-secondary mr-1 ubo-hover-pointer" title="{i18n:translate('ubo.department')}" |
| 110 | + <span class="label-info badge bg-secondary me-1 ubo-hover-pointer" title="{i18n:translate('ubo.department')}" |
111 | 111 | onclick="location.assign('{$WebApplicationBaseURL}servlets/solr/select?sort=modified+desc&q={encoder:encode(concat($fq, '+origin:"', substring-after(@valueURI,'#'), '"'))}')"> |
112 | 112 | <xsl:call-template name="output.category"> |
113 | 113 | <xsl:with-param name="classID" select="'ORIGIN'" /> |
|
161 | 161 |
|
162 | 162 | <xsl:template match="mods:classification[contains(@authorityURI,'oa')]" mode="label-info"> |
163 | 163 | <xsl:variable name="category" select="$oa//category[@ID=substring-after(current()/@valueURI,'#')]" /> |
164 | | - <span class="badge oa-badge oa-badge-{$category/@ID} ubo-hover-pointer mr-1" |
| 164 | + <span class="badge oa-badge oa-badge-{$category/@ID} ubo-hover-pointer me-1" |
165 | 165 | onclick="location.assign('{$WebApplicationBaseURL}servlets/solr/select?sort=modified+desc&q={encoder:encode(concat($fq, '+oa_exact:', $category/@ID))}')"> |
166 | 166 | <xsl:value-of select="$category/label[lang($CurrentLang)]/@text"/> |
167 | 167 | </span> |
|
334 | 334 | </xsl:template> |
335 | 335 |
|
336 | 336 | <xsl:template match="mods:dateIssued" mode="label-year-badge"> |
337 | | - <span class="label-info badge bg-secondary mr-1 ubo-hover-pointer" title="{i18n:translate('ubo.search.year')}" |
| 337 | + <span class="label-info badge bg-secondary me-1 ubo-hover-pointer" title="{i18n:translate('ubo.search.year')}" |
338 | 338 | onclick="location.assign('{$WebApplicationBaseURL}servlets/solr/select?sort=modified+desc&q={encoder:encode(concat($fq, '+year:', text()))}')"> |
339 | 339 | <xsl:value-of select="text()" /> |
340 | 340 | </span> |
|
0 commit comments