-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.php
More file actions
22 lines (22 loc) · 834 Bytes
/
index.php
File metadata and controls
22 lines (22 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
if (defined('__BREAKDANCE_DIR__')) {
require_once __BREAKDANCE_DIR__ . "/plugin/themeless/theme-simulator/breakdance-no-template.php";
} else {
// TODO what do we want to put in there? A link to the plugins dir? A link to where they can buy Breakdance?
?>
<section style="
max-width: 600px;
margin: 60px auto;
padding: 20px 40px;
background: rgb(205,203,250);
background: linear-gradient(90deg, rgba(205,203,250,1) 0%, rgba(144,204,237,0.50) 100%);
border-radius: 8px;
font-family: sans-serif;
">
<p>
You're seeing an empty page because you're using <b>Breakdance Zero Theme</b>, but you don't have Breakdance installed and enabled.
</p>
<p style="font-size: 18px; font-weight: bold;">Please install and enable Breakdance.</p>
</section>
<?php
}