aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/webapp/WEB-INF/layouts/content.html
blob: d3260acff1a94baa4eb66eb01afcdde2bc90da38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html prefix="og: http://ogp.me/ns#">
<head id="org" itemprop="publisher" itemscope="" itemtype="http://schema.org/Organization">
    <meta charset="utf-8"/>
    <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
    <script type="text/javascript" src="/{{ beans.webApp.scriptsUrl }}"></script>
    <link rel="stylesheet" type="text/css" href="/{{ beans.webApp.styleUrl }}"/>
    {% block headers %}
    {{ headers | default('') | raw }}
    {% endblock %}
    <title itemprop="name">{{ title | default('Juick') }}</title>
    <meta itemprop="url" content="https://juick.com/" />
    <meta property="og:type" content="{{ ogtype | default('website') }}" />
    <meta property="fb:app_id" content="130568668304" />
    <meta name="viewport" content="width=device-width,initial-scale=1"/>
    <meta name="msapplication-config" content="//i.juick.com/browserconfig.xml"/>
    <meta name="msapplication-TileColor" content="#ffffff"/>
    <meta name="msapplication-TileImage" content="//i.juick.com/ms-icon-144x144.png"/>
    <meta name="theme-color" content="#ffffff"/>
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <link rel="apple-touch-icon" sizes="57x57" href="//i.juick.com/apple-icon-57x57.png"/>
    <link rel="apple-touch-icon" sizes="60x60" href="//i.juick.com/apple-icon-60x60.png"/>
    <link rel="apple-touch-icon" sizes="72x72" href="//i.juick.com/apple-icon-72x72.png"/>
    <link rel="apple-touch-icon" sizes="76x76" href="//i.juick.com/apple-icon-76x76.png"/>
    <link rel="apple-touch-icon" sizes="114x114" href="//i.juick.com/apple-icon-114x114.png"/>
    <link rel="apple-touch-icon" sizes="120x120" href="//i.juick.com/apple-icon-120x120.png"/>
    <link rel="apple-touch-icon" sizes="144x144" href="//i.juick.com/apple-icon-144x144.png"/>
    <link rel="apple-touch-icon" sizes="152x152" href="//i.juick.com/apple-icon-152x152.png"/>
    <link rel="apple-touch-icon" sizes="180x180" href="//i.juick.com/apple-icon-180x180.png"/>
    <link itemprop="logo" href="http://juick.com/#juick-logo" itemtype="http://schema.org/ImageObject" />
    <link rel="icon" type="image/png" sizes="32x32" href="//i.juick.com/favicon-32x32.png"/>
    <link rel="icon" type="image/png" sizes="96x96" href="//i.juick.com/favicon-96x96.png"/>
    <link rel="icon" type="image/png" sizes="16x16" href="//i.juick.com/favicon-16x16.png"/>
    <link rel="manifest" href="//i.juick.com/manifest.json"/>
    <script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@id": "http://juick.com/#juick-logo",
  "@type": "ImageObject",
  "url": "http://juick.com/logo.png",
  "width": 110,
  "height": 36
}
    </script>
</head>
<body id="body" {% if visitor.uid > 0 %}data-hash="{{visitor.authHash}}"{% endif %}>
{% include "views/partial/navigation" %}
<div id="wrapper">
    {% if visitor.uid == 0 %}
    <div class="announcement">
        <p>{{ i18n("messages","message.loginForSending", "/login") | raw }}.</p>
    </div>
    {% endif %}
<section id="content"
    {% if msg | default('') is not empty %}data-mid="{{ msg.mid }}"{% endif %}>
    {% block content %}
    {% endblock %}
</section>
<aside id="column">
    {% block column %}
    {% endblock %}
</aside>
</div>
{% include "views/partial/footer" %}
</body>
</html>