Bug 22672: Change <i> to <em> and <b> to <strong> in templates, includes, xslt
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-auth-MARCdetail.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE Koha %]
4 [% PROCESS 'opac-authorities.inc' %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog &rsaquo;  Entry [% authtypetext | html %]</title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 [% BLOCK cssinclude %][% END %]
9 </head>
10 [% INCLUDE 'bodytag.inc' bodyid='opac-authoritiesdetail' bodyclass='scrollto' %]
11 [% INCLUDE 'masthead.inc' %]
12
13     <div class="main">
14         <ul class="breadcrumb">
15             <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
16             <li><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a> <span class="divider">&rsaquo;</span></li>
17             <li><a href="#">Entry [% authtypetext | html %]</a></li>
18         </ul>
19
20         <div class="container-fluid">
21             <div class="row-fluid">
22                 [% IF ( OpacNav || OpacNavBottom ) %]
23                     <div class="span2">
24                         <div id="navigation">
25                             [% INCLUDE 'navigation.inc' %]
26                         </div>
27                     </div>
28                     <div class="span10">
29                 [% ELSE %]
30                     <div class="span12">
31                 [% END %]
32                     <div id="userauthMARCdetails" class="maincontent">
33                         <div id="views">
34                             <span class="view">
35                                 <a id="Normalview" href="/cgi-bin/koha/opac-authoritiesdetail.pl?authid=[% authid | html %]">Normal view</a>
36                             </span>
37                             <span class="view">
38                                 <span id="MARCview">MARC view</span>
39                             </span>
40                         </div>
41
42                         [% IF ( displayhierarchy ) %]
43                             <div id="hierarchies">
44                                 [% PROCESS showhierarchy trees = loophierarchies %]
45                             </div>
46                         [% END %]
47
48                         <h1>Entry [% authtypetext | html %]</h1>
49                         <p><a href="opac-search.pl?type=opac&amp;q=[% authid | uri %]&amp;idx=an,phr">Number of records used in: [% count | html %]</a></p>
50                             [% FOREACH Tag0X IN Tab0XX %]
51                                 <p><strong>[% Tag0X.tag | html %]</strong></p>
52                                 <ul>
53                                 [% FOREACH subfiel IN Tag0X.subfield %]
54                                     <li><strong>[% subfiel.marc_lib | $raw %]:</strong>
55                                     [% IF subfiel.isurl %]<a href="[% subfiel.marc_value | url %]">[% subfiel.marc_value | html %]</a>
56                                     [% ELSE %][% subfiel.marc_value | html %][% END %]</li>
57                                 [% END %]
58                                 </ul>
59                             [% END %]
60                     </div> <!-- / #userauthMARCdetails -->
61                 </div> <!-- / .span10/12 -->
62             </div> <!-- / .row-fluid -->
63         </div> <!-- / .container-fluid -->
64     </div> <!-- / .main -->
65
66 [% INCLUDE 'opac-bottom.inc' %]
67 [% BLOCK jsinclude %]
68 [% Asset.js("lib/jquery/plugins/jquery.jstree.js") | $raw %]
69 <script>
70     //<![CDATA[
71         $(document).ready(function() {
72             [% IF ( displayhierarchy ) %]
73                 var current_nodes = [];
74                 $('.currentauth').each(function() {
75                     current_nodes.push('#' + $(this).parent().parents('li:first').attr('id'));
76                     });
77                 $('#hierarchies').jstree({
78                         "plugins": [ "themes", "html_data"],
79                         "themes": { "theme": "classic",
80                                     "icons": false },
81                         "core": { "initially_open": current_nodes }
82                     });
83             [% END %]
84         });
85     //]]>
86 </script>
87 [% END %]