Bug 7550: SCO - Restrict access of patron's image
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / opac-main.tt
1 [% USE Koha %]
2 [% USE Branches %]
3 [% INCLUDE 'doc-head-open.inc' %]
4 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle %][% ELSE %]Koha online[% END %] catalog</title>
5 [% INCLUDE 'doc-head-close.inc' %]
6 [% BLOCK cssinclude %][% END %]
7 </head>
8 [% INCLUDE 'bodytag.inc' bodyid='opac-main' %]
9 [% INCLUDE 'masthead.inc' %]
10
11 <div class="main">
12     <ul class="breadcrumb">
13         <li><a href="#">Home</a></li>
14     </ul>
15
16     [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
17         [% IF ( loggedinusername ) %]
18             <div id="loggedin" class="container-fluid">
19         [% ELSE %]
20             <div id="notloggedin" class="container-fluid">
21         [% END %]
22     [% ELSE %]
23         <div id="notloggedin" class="container-fluid">
24     [% END %]
25
26     <div class="row-fluid">
27     [% IF ( OpacNav ||  OpacNavBottom ) %]
28         <div class="span2">
29             <div id="navigation">
30                 [% INCLUDE 'navigation.inc' %]
31             </div>
32         </div>
33     [% END %]
34
35     [% IF ( OpacNav ||  OpacNavBottom  ) %]
36         <div class="span7">
37     [% ELSE %]
38         <div class="span9">
39     [% END %]
40             [% IF Koha.Preference( 'OpacNewsLibrarySelect' ) %]
41                 <form id="news-branch-select" class="form-inline" name="news-branch-select" method="get" action="/cgi-bin/koha/opac-main.pl">
42                 <label for="news-branch">Display news for: </label>
43                 <select id="news-branch" name="branch">
44                 [% IF ( branchcode == "" ) %]
45                 <option value="" selected="selected">system-wide only</option>
46                 [% ELSE %]
47                 <option value=""         >system-wide only</option>
48                 [% END %]
49                 [% PROCESS options_for_libraries libraries => Branches.all( selected => branchcode, unfiltered => 1, ) %]
50                 </select>
51                 </form>
52             [% END %]
53
54         [% IF ( koha_news_count ) %]
55
56             <div id="news" class="newscontainer">
57                 [% SET newsdisp = ( Koha.Preference('NewsAuthorDisplay') ) %]
58                 [% FOREACH koha_new IN koha_news %]
59                     <div class="newsitem">
60                         <a name="newsitem[% koha_new.idnew %]"></a><h4 class="newsheader">[% koha_new.title %]</h4>
61                         <div class="newsbody">[% koha_new.content %]</div>
62                         <div class="newsfooter">(published on [% koha_new.newdate %][% IF ( (newsdisp == 'opac' || newsdisp == 'both') && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %][% END %])</div>
63                     </div>
64                 [% END %]
65             </div>
66             <div id="rssnews-container">
67                 <!-- Logged in users have a branch code or it could be explicitly set -->
68                 <a href="[% OPACBaseURL %]/cgi-bin/koha/opac-news-rss.pl?branchcode=[% branchcode %]"><img src="[% interface %]/[% theme %]/images/feed-icon-16x16.png"></a>
69                 RSS feed for [% IF ( branchcode ) %][% Branches.GetName( branchcode ) %] <i>and</i> [% END %] system-wide library news.
70             </div>
71             [% ELSE %]
72                 [% IF Koha.Preference( 'OpacNewsLibrarySelect' ) %]
73                     <div id="news" class="newscontainer">
74                         <div class="newsitem">
75                             <div class="newsbody">No news to display.</div>
76                             <div class="newsfooter"></div>
77                         </div>
78                     </div>
79                 [% END %]
80             [% END %]
81
82         [% IF ( display_daily_quote && daily_quote ) %]
83             <div id="daily-quote">
84                 <h3>Quote of the Day</h3>
85                 <div>
86                     <span id="daily-quote-text">[% daily_quote.text %]</span><span id="daily-quote-sep"> ~ </span><span id="daily-quote-source">[% daily_quote.source %]</span>
87                 </div>
88             </div>
89         [% END %]
90
91         [% IF ( OpacMainUserBlock ) %]<div id="opacmainuserblock">[% OpacMainUserBlock %]</div>[% END %]
92         </div> <!-- / .span 7/9 -->
93
94         [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) || OpacNavRight ) %]
95             <div class="span3">
96                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
97                     [% UNLESS ( loggedinusername ) %]
98                         [% UNLESS ( casAuthentication || shibbolethAuthentication ) %]
99                             <div id="login">
100                                 <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="auth">
101                                     <input type="hidden" name="koha_login_context" value="opac" />
102                                     <fieldset class="brief">
103                                         <legend>Log in to your account:</legend>
104                                         <label for="userid">Login:</label><input type="text" id="userid" name="userid" />
105                                         <label for="password">Password:</label><input type="password" id="password" name="password" />
106                                     <fieldset class="action">
107                                         <input type="submit" value="Log in" class="btn" />
108                                     </fieldset>
109                                     [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]<div id="patronregistration"><p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p></div>[% END %]
110                                     </fieldset>
111                                 [% IF Koha.Preference('OpacPasswordChange') && Koha.Preference('OpacResetPassword') %]
112                                     <div id="forgotpassword">
113                                         <a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a>
114                                     </div>
115                                 [% END %]
116                                 [% IF Koha.Preference( 'NoLoginInstructions' ) %]
117                                     <div id="nologininstructions-main">
118                                         [% Koha.Preference( 'NoLoginInstructions' ) %]
119                                     </div>
120                                 [% END %]
121                                 </form>
122                             </div> <!-- /#login -->
123                         [% END # /casAuthentication %]
124                     [% END # / loggedinusername %]
125                 [% END # /opacuserlogin %]
126                 [% IF ( OpacNavRight ) %]
127                     <div id="opacnavright">
128                         [% OpacNavRight %]
129                     </div>
130                 [% END # /OpacNavRight %]
131             </div> <!-- / .span3 -->
132         [% END # /opacuserlogin || OpacNavRight %]
133
134         </div> <!-- /.container-fluid -->
135     </div> <!-- /.row-fluid -->
136 </div> <!-- /.main -->
137
138 [% INCLUDE 'opac-bottom.inc' %]
139 [% BLOCK jsinclude %][% END %]