summaryrefslogtreecommitdiffstats
path: root/templates/head.html
blob: a7eacc85ff094fc6ec451e883506a985dbbe9909 (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{{define "head"}}
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <meta name="robots" content="noindex, nofollow">
    <meta name="referrer" content="no-referrer">

    <title>{{ .Props.Title }}</title>

    <!-- iOS add to homescreen -->
    <meta name="apple-mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-status-bar-style" content="default">
    <meta name="mobile-web-app-capable" content="yes" />
    <meta name="apple-mobile-web-app-title" content="{{ .Props.Title }}">
    <meta name="application-name" content="{{ .Props.Title }}">
    <meta name="format-detection" content="telephone=no">
    <!-- iOS add to homescreen -->

    <!-- Android add to homescreen -->
    <link rel="apple-touch-icon" sizes="57x57" href="/static/images/favicon/apple-touch-icon-57x57.png">
    <link rel="apple-touch-icon" sizes="60x60" href="/static/images/favicon/apple-touch-icon-60x60.png">
    <link rel="apple-touch-icon" sizes="72x72" href="/static/images/favicon/apple-touch-icon-72x72.png">
    <link rel="apple-touch-icon" sizes="76x76" href="/static/images/favicon/apple-touch-icon-76x76.png">
    <link rel="apple-touch-icon" sizes="114x114" href="/static/images/favicon/apple-touch-icon-114x114.png">
    <link rel="apple-touch-icon" sizes="120x120" href="/static/images/favicon/apple-touch-icon-120x120.png">
    <link rel="apple-touch-icon" sizes="144x144" href="/static/images/favicon/apple-touch-icon-144x144.png">
    <link rel="apple-touch-icon" sizes="152x152" href="/static/images/favicon/apple-touch-icon-152x152.png">
    <link rel="apple-touch-icon" sizes="180x180" href="/static/images/favicon/apple-touch-icon-180x180.png">
    <link rel="icon" type="image/png" sizes="32x32" href="/static/images/favicon/favicon-32x32.png">
    <link rel="icon" type="image/png" sizes="192x192" href="/static/images/favicon/android-chrome-192x192.png">
    <link rel="icon" type="image/png" sizes="96x96" href="/static/images/favicon/favicon-96x96.png">
    <link rel="icon" type="image/png" sizes="16x16" href="/static/images/favicon/favicon-16x16.png">
    <link rel="manifest" href="/static/config/manifest.json">
    <!-- Android add to homescreen -->

    <!-- CSS Should always go first -->
    <link rel="stylesheet" href="/static/css/bootstrap-3.3.5.min.css">
    <link rel="stylesheet" href="/static/css/jasny-bootstrap.min.css">
    <link rel="stylesheet" href="/static/css/bootstrap-colorpicker.min.css">
    <link rel="stylesheet" href="/static/css/styles.css">
    <link rel="stylesheet" href="/static/css/google-fonts.css">
    <link rel="stylesheet" href="/static/css/katex.min.css">
    <link rel="stylesheet" class="code_theme" href="">

    <script src="/static/js/intl-1.0.0/Intl.js"></script>
    <script src="/static/js/intl-1.0.0/locale-data/jsonp/en.js"></script>
    <script src="/static/js/intl-1.0.0/locale-data/jsonp/es.js"></script>
    <script src="/static/js/intl-1.0.0/locale-data/jsonp/pt.js"></script>

    <script src="/static/js/react-0.14.3.js"></script>
    <script src="/static/js/react-dom-0.14.3.js"></script>
    <script src="/static/js/react-intl-2.0.0-beta-2/react-intl.js"></script>
    <script src="/static/js/react-intl-2.0.0-beta-2/locale-data/en.js"></script>
    <script src="/static/js/react-intl-2.0.0-beta-2/locale-data/es.js"></script>
    <script src="/static/js/react-intl-2.0.0-beta-2/locale-data/pt.js"></script>
    <script src="/static/js/jquery-2.1.4.js"></script>
    <script src="/static/js/bootstrap-3.3.5.js"></script>
    <script src="/static/js/bootstrap-colorpicker.min.js"></script>
    <script src="/static/js/react-bootstrap-0.28.1.js"></script>
    <script src="/static/js/velocity.min.js"></script>
    <script src="/static/js/perfect-scrollbar-0.6.7.jquery.min.js"></script>
    <script src="/static/js/jquery-dragster/jquery.dragster.js"></script>
    <script src="/static/js/babel-polyfill-6.1.18.min.js"></script>
    <script src="/static/js/katex.min.js"></script>
    <script src="/static/js/Chart.min.js"></script>

    <style id="antiClickjack">body{display:none !important;}</style>

    <script>
        if ('ReactIntl' in window && 'ReactIntlLocaleData' in window) {
            Object.keys(ReactIntlLocaleData).forEach(function(lang) {
                ReactIntl.addLocaleData(ReactIntlLocaleData[lang]);
            });
        }

        $(window).on('beforeunload', function(){
            if (window.SocketStore) {
                SocketStore.close();
            }
        });
    </script>

    <script src="/static/js/libs.min.js"></script>
    <script src="/static/js/bundle.js"></script>

    <script type="text/javascript">
        if (self === top) {
            var blocker = document.getElementById("antiClickjack");
            blocker.parentNode.removeChild(blocker);
        }
    </script>
</head>
{{end}}