blob: 469c4ef72d83c21872d869a0f26e674ba5ca97c6 [file] [log] [blame]
Nils Diewald5e485462015-05-07 20:33:04 +00001<!DOCTYPE html>
2<html>
3 <head>
4 <title><%= title() // loc('korap_desc') %></title>
5 <meta charset="utf-8" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=false, user-scalable=no" />
Akronb3025182015-05-27 23:02:44 +02007 <link href="<%= stash 'prefix' %>/favicon.ico" rel="shortcut icon" type="image/x-icon" />
Nils Diewald705b74a2015-05-07 23:57:34 +00008 <link href="<%= stash 'prefix' %>/css/kalamar-<%= $Kalamar::VERSION %>.css" type="text/css" rel="stylesheet" />
Nils Diewald845282c2015-05-14 07:53:03 +00009 %= javascript begin
10 window.KorAP = window.KorAP || {};
11 % my $api = url_for('index');
12 % $api =~ s!/$!!;
13 KorAP.URL = '<%== $api %>';
14% end
Nils Diewalde2647aa2015-05-08 00:54:45 +000015 <script src="<%= (stash('prefix') // '') . '/js/' . loc('jsFile', 'kalamar-' . $Kalamar::VERSION . '-en.js') %>" async="async"></script>
Nils Diewald5e485462015-05-07 20:33:04 +000016 </head>
17% my $embedded = 0;
18% $embedded = 1 if stash('embedded');
19 <body<% if ($embedded) { %> class="embedded"<% } %>>
20 <div id="kalamar-bg"></div>
21
22 % unless ($embedded) {
Akron27ae9ec2015-06-23 00:43:21 +020023 %= include 'partial/header'
Nils Diewald5e485462015-05-07 20:33:04 +000024 % }
25
Akron7d75ee32017-05-02 13:42:41 +020026% if (!user_auth && stash('auth_support')) { # user not logged in
Akron189b3592016-01-04 20:56:46 +010027% content_for 'sidebar', begin
Akron2e3d3772017-04-14 16:20:40 +020028% if (flash('handle_or_email') && !param('handle_or_email')) {
29% param(handle_or_email => flash('handle_or_email'));
30% };
Akron189b3592016-01-04 20:56:46 +010031<fieldset>
Akrone8235be2016-06-27 11:02:18 +020032 %= form_for 'login', begin
Akron741b2b12017-04-13 22:15:59 +020033 <legend><span><%= loc 'login' %></span></legend>
Akron2670f5b2017-05-31 17:54:07 +020034 %= text_field 'handle_or_email', placeholder => loc('userormail')
Akron189b3592016-01-04 20:56:46 +010035 <div>
Akron741b2b12017-04-13 22:15:59 +020036 %= password_field 'pwd', placeholder => loc('pwd')
Akron189b3592016-01-04 20:56:46 +010037 <button type="submit"><span><%= loc 'go' %></span></button>
38 </div>
Akron2670f5b2017-05-31 17:54:07 +020039 % end
40 <p><%= loc 'loginExplanation' %></p>
Akrone5ef4e02017-04-19 17:07:52 +020041%# <ul>
42%# <li><%= link_to loc('register') => 'register' %></li>
43%# <li><%= link_to loc('pwdforgotten') => 'pwd_forgotten' %></li>
44%# </ul>
Akron189b3592016-01-04 20:56:46 +010045</fieldset>
46% end
47% }
48
Nils Diewald5e485462015-05-07 20:33:04 +000049 % my $aside = content_for('sidebar');
50 <aside tabindex="0" class="<% unless (length($aside) > 0) { %>off<% } elsif (stash('sidebar_active')) { %>active<% } %>">
51 <div>
Akron27ae9ec2015-06-23 00:43:21 +020052 %= $aside
Nils Diewald5e485462015-05-07 20:33:04 +000053 </div>
54 </aside>
55
56 <main<% if (stash 'main_class') { %> class="<%= stash 'main_class' %>"<% } %>>
57 %= content
58 </main>
59
60 % unless ($embedded) {
61 <footer>
62 <a href="http://korap.ids-mannheim.de/"><%= loc 'about' %></a>
63 <%= doc_link_to 'V '. $Kalamar::VERSION, 'korap', 'kalamar' %>
64 </footer>
Nils Diewald5e485462015-05-07 20:33:04 +000065 % };
Akron27ae9ec2015-06-23 00:43:21 +020066 %= notifications 'Kalamar::Plugin::Notifications'
Nils Diewald5e485462015-05-07 20:33:04 +000067 </body>
68</html>