dh_ackergaul
vor 3 Tagen bb80cdf5a6157ca1f3a276e12e9faae9a4739cb7
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
html
    head
        // SCRIPTS
        script(src="/js/0fc145572b09ffbad242.externals.js")
        // SCRIPTS END
 
        script(src="/js/unsupported.js")
        style.
            html, body {
                width: 100%;
                height: 100%;
                padding: 0;
                margin: 0;
                flex: 1;
                display: flex;
                flex-direction: column;
                word-wrap: break-word;
                font-family: "Arial", "Lucida Console", Monaco;
            }
 
            button {
                border-style: initial;
                background: #ff8014;
                border-radius: 9px;
                padding: 4px;
                min-width: 88px;
                cursor: pointer;
                color: white;
            }
 
            button:hover {
                background: #ff920b;
            }
 
            .message {
                margin: auto;
                width: 400px;
                height: 200px;
                overflow: hidden;
                box-shadow: 0 2px 9px -2px black;
                border-radius: 14px;
                padding: 0;
                position: relative;
            }
 
            .content {
                display: flex;
                overflow-x: hidden;
                overflow-y: auto;
                position: absolute;
                top: 30px;
                left: 10px;
                bottom: 55px;
                right: 10px;
                text-align: center;
                word-wrap: break-word;
            }
 
            .title {
                box-shadow: 0 0 5px 0 grey;
                text-align: center;
                position: absolute;
                top: -17px;
                right: 0;
                left: 0;
                height: 60px;
                background: darkgrey;
            }
 
            .fotter {
                position: absolute;
                bottom: 10px;
                left: 10px;
                right: 10px;
                height: 37px;
                flex-direction: row-reverse;
                flex: 1;
                display: flex;
            }
 
            p {
                font-size: 1.3em;
                margin: auto;
            }
 
 
    body
        .message
            .title
                if data.title
                    h1 #{i18n(data.title)}
                else
                    h1 Error
            .content
                if data.message
                    p #{i18n(data.message)}
                else
                    p Internal Server Error!
            .fotter
                if (!data.hideBackButton)
                    button#buttonR #{i18n('fv.error.return')}
 
                    script.
                        var btn = document.getElementById("buttonR");
 
                        btn.onclick = function (e) {
                            if ("#{data.url}") {
                                window.location.href = "!{data.url}";
                            }
                            else {
                                window.location.href = "/";
                            }
                        }