-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathno-url.html
176 lines (154 loc) · 4.22 KB
/
no-url.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta
name="description"
content="Helping remote church members find your weekend services on your church website."
/>
<title>No Page Set Up</title>
<link
rel="stylesheet"
type="text/css"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
/>
<!-- Favicons -->
<meta name="theme-color" content="#5D4DD6" />
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="manifest" href="site.webmanifest" />
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
footer {
background: #f9f9f9;
}
h1 {
font-weight: 700;
font-size: 90px;
}
.footer-text {
margin-top: 10px;
display: inline-block;
font-size: 25px;
padding: 40px 0px;
}
.footer-text img {
margin-top: -10px;
margin-left: 4px;
height: 30px;
}
.pink {
color: #e83e8c;
}
a {
color: #006fba;
}
.btn-primary:link,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited {
background: #5d4dd6 !important;
border: 0px;
}
.tab {
margin-left: 40px;
}
.lead {
padding-top: 10px;
}
h2 {
margin-bottom: 10px;
}
code {
border: 1px solid #eee;
padding: 15px;
border-radius: 5px;
min-height: 400px;
}
#looksLikeThis {
width: 200px;
float: right;
margin-right: 20px;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
@media only screen and (max-width: 800px) {
h1 {
font-size: 50px;
}
#looksLikeThis {
width: 100%;
float: none;
margin: 30px 0px -30px 0px;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-161738697-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-161738697-1');
</script>
</head>
<body class="d-flex flex-column h-100">
<!-- Begin page content -->
<main role="main" class="flex-shrink-0">
<div class="container-fluid">
<div class="row">
<div class="col-xl-3 text-center order-xl-12"></div>
<div class="col-xl-6 order-xl-6">
<h2 class="mt-5 text-center">No Video Page Set Up</h2>
<p
class="lead text-center"
style="width: 100%; max-width: 800px; margin: 0px auto"
>
It looks like this configuration of
<b>livebar</b> is missing the web address for where you would like
to send users.
<a href="https://livebar.church"
>Add the web address into the configuration</a
>
and try again.
</p>
</div>
<div class="col-xl-3 order-xl-1"></div>
</div>
</div>
</main>
<footer class="footer mt-auto py-3">
<div class="container text-center">
<span class="text-muted footer-text"
>Made with <i class="fas fa-heart pink"></i> from
<a href="https://www.breezechms.com" target="_blank">
<img src="images/breeze-logo.png" class="breeze-logo" /> </a
></span>
</div>
</footer>
<script
src="https://kit.fontawesome.com/4eb67263e2.js"
crossorigin="anonymous"
></script>
</body>
</html>