blob: 1ddb271ed2796f5f04612cd640dc95591bb2a132 [file] [log] [blame]
Nils Diewald5e485462015-05-07 20:33:04 +00001<!DOCTYPE html>
Akrona17bc5b2018-10-05 13:35:01 +02002% my $lang = app->localize->preference // 'en';
3% my $desc = loc('korap_desc');
4% my $keywords = loc('korap_keywords');
5<html lang="<%= $lang %>" xml:lang="<%= $lang %>" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/">
6 <head prefix="og: http://ogp.me/ns# website: http://ogp.me/ns/website#">
Nils Diewald5e485462015-05-07 20:33:04 +00007 <title><%= title() // loc('korap_desc') %></title>
8 <meta charset="utf-8" />
9 <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" />
Akrona17bc5b2018-10-05 13:35:01 +020010 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
12 <meta http-equiv="Content-Style-Type" content="text/css" />
13 <meta http-equiv="Content-Script-Type" content="text/javascript" />
14 <meta name="msapplication-TileImage" content="<%= url_for '/img/windows-tile.png' %>" />
15 <meta name="msapplication-TileColor" content="#9bad0b" />
16 <meta name="robots" content="index,follow" />
17 <meta name="apple-mobile-web-app-status-bar-style" content="default" />
18 <meta name="description" content="<%= $desc %>" />
19 <meta name="language" content="<%= $lang %>" />
20 <meta name="author" content="The KorAP Team" />
21 <meta name="DC.type" content="service" />
22 <meta name="DC.creator" content="IDS Mannheim" />
23 <meta name="DC.title" content="<%= title() || loc('korap_short') %>" />
24 <meta name="DC.description" content="<%= $desc %>" />
25 <meta name="DC.format" content="text/html" />
26 <meta name="DC.contributor" content="The KorAP Team" />
27 <meta name="DC.publisher" content="IDS Mannheim" />
28 <meta name="DC.language" content="<%= $lang %>" />
29 <meta property="og:url" content="<%= url_for->to_abs %>" />
30 <meta property="og:locale" content="<%= $lang %>" />
31 <meta property="og:description" content="<%= $desc %>" />
32 <meta property="og:image" content="<%= url_for '/img/korap-200.png' %>" />
33 <meta property="og:image:width" content="200" />
34 <meta property="og:image:height" content="200" />
35 <meta name="twitter:image" content="<%= url_for '/img/korap-280.png' %>" />
36 <meta name="twitter:description" content="<%= $desc %>" />
37 <meta name="geo.region" content="<%= loc 'korap_region' %>" />
38 <meta name="geo.placename" content="<%= loc 'korap_placename' %>" />
39 <meta name="keywords" content="<%= $keywords %>" />
40 <meta name="DC.subject" content="<%= $keywords %>" />
41
42 <link rel="apple-touch-icon" href="<%= url_for '/img/apple-touch-icon.png' %>" />
Akronb3025182015-05-27 23:02:44 +020043 <link href="<%= stash 'prefix' %>/favicon.ico" rel="shortcut icon" type="image/x-icon" />
Nils Diewald705b74a2015-05-07 23:57:34 +000044 <link href="<%= stash 'prefix' %>/css/kalamar-<%= $Kalamar::VERSION %>.css" type="text/css" rel="stylesheet" />
Akron4036d542018-02-12 13:17:09 +010045%= javascript begin
Nils Diewald845282c2015-05-14 07:53:03 +000046 window.KorAP = window.KorAP || {};
47 % my $api = url_for('index');
48 % $api =~ s!/$!!;
49 KorAP.URL = '<%== $api %>';
50% end
Akron4036d542018-02-12 13:17:09 +010051
52% if ($c->app->mode eq 'development') {
Akrona68559c2018-02-13 15:02:18 +010053 <script data-main="/js/src/app/devel" src="/js/lib/require.js" async="async"></script>
Akron4036d542018-02-12 13:17:09 +010054% } else {
Nils Diewalde2647aa2015-05-08 00:54:45 +000055 <script src="<%= (stash('prefix') // '') . '/js/' . loc('jsFile', 'kalamar-' . $Kalamar::VERSION . '-en.js') %>" async="async"></script>
Akron4036d542018-02-12 13:17:09 +010056% };
Nils Diewald5e485462015-05-07 20:33:04 +000057 </head>
58% my $embedded = 0;
59% $embedded = 1 if stash('embedded');
Akrona17bc5b2018-10-05 13:35:01 +020060 <body class="no-js<% if ($embedded) { %> embedded<% } %>" itemscope itemtype="http://schema.org/<%= stash('schematype') || 'WebApplication' %>">
Akronae8f31c2017-11-28 18:05:52 +010061 <script>document.body.classList.remove('no-js');</script>
Nils Diewald5e485462015-05-07 20:33:04 +000062 <div id="kalamar-bg"></div>
63
Akrone4968442018-05-22 15:32:07 +020064
65 %= include 'partial/side', embedded => $embedded
66
Akron4751da62017-06-07 22:37:10 +020067 % unless ($embedded) {
68 %= include 'partial/header'
69 % }
Akrond1741ae2017-11-29 09:58:53 +010070
71
72 <noscript>
73 <p id="activate"><%= loc 'activateJS' %></p>
74 </noscript>
Akron4751da62017-06-07 22:37:10 +020075
Nils Diewald5e485462015-05-07 20:33:04 +000076 <main<% if (stash 'main_class') { %> class="<%= stash 'main_class' %>"<% } %>>
77 %= content
78 </main>
79
80 % unless ($embedded) {
Akrone4968442018-05-22 15:32:07 +020081 %= include 'partial/footer'
Nils Diewald5e485462015-05-07 20:33:04 +000082 % };
Akron27ae9ec2015-06-23 00:43:21 +020083 %= notifications 'Kalamar::Plugin::Notifications'
Akron4c33c622018-11-12 13:43:27 +010084
Akron864c2932018-11-16 17:18:55 +010085 %= content_block 'scripts'
Nils Diewald5e485462015-05-07 20:33:04 +000086 </body>
Nils Diewald5e485462015-05-07 20:33:04 +000087</html>