blob: f92ab2d1a2a0bf1d4a988cc9115f9884dc487c1e [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
Akron189b3592016-01-04 20:56:46 +010026% if (1) { # user not logged in
27% content_for 'sidebar', begin
28<fieldset>
Akrone8235be2016-06-27 11:02:18 +020029 %= form_for 'login', begin
Akron189b3592016-01-04 20:56:46 +010030 <legend><span><%= loc 'login' %></span></legend>
31 <input type="text" name="handle_or_email" placeholder="<%= loc 'email' %>" />
32 <div>
33 <input type="password" name="pwd" placeholder="<%= loc 'pwd' %>" />
34 <button type="submit"><span><%= loc 'go' %></span></button>
35 </div>
Akrone8235be2016-06-27 11:02:18 +020036 % end
37 <ul>
38 <li><%= link_to loc('register') => 'register' %></li>
39 <li><%= link_to loc('pwdforgotten') => 'pwd_forgotten' %></li>
40 </ul>
Akron189b3592016-01-04 20:56:46 +010041</fieldset>
42% end
43% }
44
Nils Diewald5e485462015-05-07 20:33:04 +000045 % my $aside = content_for('sidebar');
46 <aside tabindex="0" class="<% unless (length($aside) > 0) { %>off<% } elsif (stash('sidebar_active')) { %>active<% } %>">
47 <div>
Akron27ae9ec2015-06-23 00:43:21 +020048 %= $aside
Nils Diewald5e485462015-05-07 20:33:04 +000049 </div>
50 </aside>
51
52 <main<% if (stash 'main_class') { %> class="<%= stash 'main_class' %>"<% } %>>
53 %= content
54 </main>
55
56 % unless ($embedded) {
57 <footer>
58 <a href="http://korap.ids-mannheim.de/"><%= loc 'about' %></a>
59 <%= doc_link_to 'V '. $Kalamar::VERSION, 'korap', 'kalamar' %>
60 </footer>
Nils Diewald5e485462015-05-07 20:33:04 +000061 % };
Akron27ae9ec2015-06-23 00:43:21 +020062 %= notifications 'Kalamar::Plugin::Notifications'
Nils Diewald5e485462015-05-07 20:33:04 +000063 </body>
64</html>