View | Details | Raw Unified | Return to bug 25238
Collapse All | Expand All

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-detail.tt (-1 / +1 lines)
Lines 130-136 Link Here
130
                    [% IF ( OPACXSLTDetailsDisplay ) %]
130
                    [% IF ( OPACXSLTDetailsDisplay ) %]
131
                        [% XSLTBloc | $raw %]
131
                        [% XSLTBloc | $raw %]
132
                    [% ELSE %]
132
                    [% ELSE %]
133
                        <h1 class="title">[% INCLUDE 'biblio-title.inc' %]</h1>
133
                        <h2 class="title">[% INCLUDE 'biblio-title.inc' %]</h2>
134
                        [% IF ( author ) %]<h5 class="author">by <a class="contributors" href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %]
134
                        [% IF ( author ) %]<h5 class="author">by <a class="contributors" href="/cgi-bin/koha/opac-search.pl?q=au:[% author |url %]">[% author | html %]</a></h5>[% END %]
135
135
136
                        <span class="results_summary">[% UNLESS ( item_level_itypes ) %]
136
                        <span class="results_summary">[% UNLESS ( item_level_itypes ) %]
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/MARC21slim2OPACDetail.xsl (-4 / +4 lines)
Lines 119-135 Link Here
119
        <!-- Title Statement -->
119
        <!-- Title Statement -->
120
        <!-- Alternate Graphic Representation (MARC 880) -->
120
        <!-- Alternate Graphic Representation (MARC 880) -->
121
        <xsl:if test="$display880">
121
        <xsl:if test="$display880">
122
            <h1 class="title" property="alternateName">
122
            <h2 class="title" property="alternateName">
123
                <xsl:call-template name="m880Select">
123
                <xsl:call-template name="m880Select">
124
                    <xsl:with-param name="basetags">245</xsl:with-param>
124
                    <xsl:with-param name="basetags">245</xsl:with-param>
125
                    <xsl:with-param name="codes">abhfgknps</xsl:with-param>
125
                    <xsl:with-param name="codes">abhfgknps</xsl:with-param>
126
                </xsl:call-template>
126
                </xsl:call-template>
127
            </h1>
127
            </h2>
128
        </xsl:if>
128
        </xsl:if>
129
129
130
            <!--Bug 13381 -->
130
            <!--Bug 13381 -->
131
            <xsl:if test="marc:datafield[@tag=245]">
131
            <xsl:if test="marc:datafield[@tag=245]">
132
                <h1 class="title" property="name">
132
                <h2 class="title" property="name">
133
                    <xsl:for-each select="marc:datafield[@tag=245]">
133
                    <xsl:for-each select="marc:datafield[@tag=245]">
134
                        <xsl:call-template name="subfieldSelect">
134
                        <xsl:call-template name="subfieldSelect">
135
                            <xsl:with-param name="codes">a</xsl:with-param>
135
                            <xsl:with-param name="codes">a</xsl:with-param>
Lines 154-160 Link Here
154
                            </xsl:choose>
154
                            </xsl:choose>
155
                        </xsl:for-each>
155
                        </xsl:for-each>
156
                    </xsl:for-each>
156
                    </xsl:for-each>
157
                </h1>
157
                </h2>
158
            </xsl:if>
158
            </xsl:if>
159
159
160
160
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/NORMARCslim2OPACDetail.xsl (-2 / +2 lines)
Lines 67-73 Link Here
67
67
68
        <!-- Tittel og ansvarsopplysninger -->
68
        <!-- Tittel og ansvarsopplysninger -->
69
        <xsl:if test="marc:datafield[@tag=245]">
69
        <xsl:if test="marc:datafield[@tag=245]">
70
        <h1 class="title">
70
        <h2 class="title">
71
            <xsl:for-each select="marc:datafield[@tag=245]">
71
            <xsl:for-each select="marc:datafield[@tag=245]">
72
                    <xsl:call-template name="subfieldSelect">
72
                    <xsl:call-template name="subfieldSelect">
73
                        <xsl:with-param name="codes">a</xsl:with-param>
73
                        <xsl:with-param name="codes">a</xsl:with-param>
Lines 89-95 Link Here
89
                        <xsl:with-param name="codes">np</xsl:with-param>
89
                        <xsl:with-param name="codes">np</xsl:with-param>
90
                    </xsl:call-template>
90
                    </xsl:call-template>
91
            </xsl:for-each>
91
            </xsl:for-each>
92
        </h1>
92
        </h2>
93
        </xsl:if>
93
        </xsl:if>
94
94
95
        <!-- Author Statement -->
95
        <!-- Author Statement -->
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/xslt/UNIMARCslim2OPACDetail.xsl (-3 / +2 lines)
Lines 25-31 Link Here
25
25
26
  <xsl:if test="marc:datafield[@tag=200]">
26
  <xsl:if test="marc:datafield[@tag=200]">
27
    <xsl:for-each select="marc:datafield[@tag=200]">
27
    <xsl:for-each select="marc:datafield[@tag=200]">
28
      <h1 class="title">
28
      <h2 class="title">
29
        <xsl:call-template name="addClassRtl" />
29
        <xsl:call-template name="addClassRtl" />
30
        <xsl:for-each select="marc:subfield">
30
        <xsl:for-each select="marc:subfield">
31
          <xsl:choose>
31
          <xsl:choose>
Lines 62-68 Link Here
62
            </xsl:otherwise>
62
            </xsl:otherwise>
63
          </xsl:choose>
63
          </xsl:choose>
64
        </xsl:for-each>
64
        </xsl:for-each>
65
      </h1>
65
      </h2>
66
    </xsl:for-each>
66
    </xsl:for-each>
67
  </xsl:if>
67
  </xsl:if>
68
68
69
- 

Return to bug 25238