1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>[% IF ( LibraryNameTitle ) %][% LibraryNameTitle | html %][% ELSE %]Koha online[% END %] catalog › An error has occurred</title>
3 [% INCLUDE 'doc-head-close.inc' %]
4 [% BLOCK cssinclude %][% END %]
6 <body id="error[% errno | html %]" class="error">
7 [% INCLUDE 'masthead.inc' %]
10 <nav aria-label="breadcrumb">
11 <ul class="breadcrumb">
12 <li class="breadcrumb-item">
13 <a href="/cgi-bin/koha/opac-main.pl">Home</a>
15 <li class="breadcrumb-item active" aria-current="page">
16 <a href="#">Error [% errno | html %]</a>
21 <div class="container-fluid">
23 [% IF ( OpacNav || OpacNavBottom ) %]
24 <div class="col-lg-2">
26 [% INCLUDE 'navigation.inc' %]
29 <div class="col-10 order-first order-md-first order-lg-2">
31 <div class="col order-first order-md-first order-lg-2">
33 <div id="errormsg[% errno | html %]">
34 <h3>Sorry, the requested page is not available</h3>
35 <h4>Error [% errno | html %]</h4>
36 <h5>This message can have the following reason(s):</h5>
38 [% IF ( errno == 400 ) %]
39 <li>The link is broken and the page does not exist.</li>
42 [% IF ( errno == 401 ) %]
43 <li>You are not authorized to view this page.</li>
46 [% IF ( errno == 402 ) %]
47 <li>The link is invalid.</li>
50 [% IF ( errno == 403 ) %]
51 <li>You are forbidden to view this page.</li>
54 [% IF ( errno == 404 ) %]
55 <li>You made use of an external link to a catalog item that is no longer available.</li>
56 <li>You followed an outdated link e.g. from a search engine or a bookmark.</li>
57 <li>You tried to access a page that needs authentication.</li>
58 <li>An internal link in our catalog home page is broken and the page does not exist.</li>
60 [% IF ( errno == 500 ) %]
61 <li>An error occurred while processing your request.</li>
66 [% IF ( errno == 401 ) && ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
67 <li>Please log in to the catalog and try again. <a href="/cgi-bin/koha/opac-user.pl">Login page</a></li>
69 <li>You can use the menu and links at the top of the page</li>
70 <li>You can search our catalog using the search form at the top of this page.</li>
71 <li><a href="/cgi-bin/koha/opac-main.pl">Return to the catalog home page.</a></li>
73 <h4>Report issues and broken links</h4>
75 <li>To report this error, please contact the Koha Administrator.
76 <a href="mailto:[% admin | uri %]">Send email</a>.</li>
78 </div> <!-- / #errormsg[% errno | html %] -->
79 </div> <!-- / .col-lg10/12 -->
80 </div> <!-- / .row -->
81 </div> <!-- / .container-fluid -->
82 </div> <!-- / .main -->
84 [% INCLUDE 'opac-bottom.inc' %]