forked from DIYgod/RSSHub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.art
104 lines (87 loc) · 2.6 KB
/
welcome.art
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
<!DOCTYPE html>
<html>
<head>
<title>Welcome to RSSHub!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-size: 16px;
color: #2c3e50;
}
.content {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 400px;
text-align: center;
}
details {
text-align: left;
max-height: 400px;
overflow: scroll;
}
details::-webkit-scrollbar {
width: 5px;
}
details::-webkit-scrollbar-thumb {
border-radius: 3px;
background-color: #eee;
}
details::-webkit-scrollbar-thumb:hover {
background-color: #ccc;
}
summary {
margin-bottom: 10px;
outline: none;
cursor: pointer;
}
.debug-key {
width: 100px;
text-align: right;
display: inline-block;
margin-right: 10px;
}
.debug-item {
margin: 5px 0;
font-size: 12px;
line-height: 24px;
}
.debug-value {
display: inline-block;
vertical-align: top;
}
</style>
</head>
<body>
<div class="content">
<p>
<img src="https://i.imgur.com/NZpRScX.png" alt="RSSHub" width="100">
</p>
<h1>Welcome to
<span style="color: #F5712C;">RSSHub</span>!</h1>
<p>If you see this page, the RSSHub{{ if hash }} ({{ hash }}){{ /if }} is successfully installed and working.</p>
<p>For online documentation and support please refer to
<a href="https://docs.rsshub.app/" target="_blank">docs.rsshub.app</a>.</p>
<p>-- Made with
<i style="color:#d43f57">♥</i> by
<a href="https://diygod.me" target="_blank">DIYgod</a>
</p>
{{ if showDebug }}
<details>
<summary>debug</summary>
{{ each debug }}
<div class="debug-item">
<span class="debug-key">{{ $value.name }}: </span>
<span class="debug-value">{{@ $value.value }}</span>
</div>
{{ /each }}
</details>
{{ /if }}
</div>
</body>
</html>