-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (113 loc) · 4.32 KB
/
index.html
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
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>TheBox</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="apartement in Leipzig AirBnB">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="manifest" href="/manifest.json" />
<link rel="shortcut icon" href="/_media/artwork/thebox-logo-art.png" type="image/png">
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192x192.png">
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512x512.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<!-- OpenGraph -->
<meta property="og:title" content="TheBox">
<meta property="og:type" content="website">
<meta property="og:url" content="https://thebox.andrelademann.de">
<meta property="og:image" content="_media/thebox-opengraph.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@vergissberlin">
<meta name="twitter:creator" content="@vergissberlin">
<meta name="twitter:title" content="TheBox - Apartement in Leipzig, Germany, Europe">
<meta name="twitter:description" content="Apartement in Leipzig AirBnB">
<meta name="twitter:image" content="_media/thebox-opengraph.png">
<!-- Google -->
<meta itemprop="name" content="TheBox - Apartement in Leipzig">
<meta itemprop="description" content="Apartement in Leipzig AirBnB">
<meta itemprop="image" content="_media/thebox-opengraph.png">
<style>
.grid {
column-count: 2;
column-gap: 1rem;
background: #eee;
border-radius: 12px;
padding: 1rem;
margin-bottom: 2rem;
max-width: 1440px;
}
.grid figure {
display: inline-block;
margin: 0 0 0 0;
width: 100%;
}
.grid figcaption {
color: #444;
font-style: italic;
min-height: 3em;
}
.grid img {
width: 100%;
height: auto;
}
@media screen and (min-width: 480px) {
.grid {
column-count: 3;
}
}
</style>
</head>
<body>
<div id="app">Loading …</div>
<script>
window.$docsify = {
basePath: 'https://raw.githubusercontent.com/nullzueins/thebox-docs/main/',
maxLevel: 1,
mergeNavbar: false,
name: 'TheBox',
coverpage: {
'/': '_coverpage.md',
'/en-gb/': '_coverpage.md'
},
repo: 'nullzueins/thebox-docs',
loadSidebar: false,
plugins: [],
copyCode: {
buttonText: {
'/zh-cn/': '点击复制',
'/ru/': 'Скопировать в буфер обмена',
'/de-de/': 'Klicken Sie zum Kopieren',
'/es/': 'Haga clic para copiar',
'/': 'Copy to clipboard',
},
errorText: {
'/zh-cn/': '错误',
'/ru/': 'ошибка',
'/': 'Error',
},
successText: {
'/zh-cn/': '复制',
'/ru/': 'Скопировано',
'/de-de/': 'Kopiert',
'/es/': 'Copiado',
'/': 'Copied',
},
}
}
// Service worker for offline mode
if (typeof navigator.serviceWorker !== 'undefined') {
navigator.serviceWorker.register('sw.js')
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<!-- Plugins -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="https://unpkg.com/docsify-copy-code@2"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-dark-mode@latest/dist/index.min.js"></script>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-dark-mode@latest/dist/style.min.css" />
</body>
</html>