-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
34 lines (27 loc) · 857 Bytes
/
index.php
File metadata and controls
34 lines (27 loc) · 857 Bytes
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
<?php
require("prepare.php");
?>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
</style>
</head>
<body>
<h1>Standard page with content</h1>
<div><span style="font-size:55px;">C</span>ontent worth commenting</div>
<br><?php
// Show some content if user has accepted add-on
if($userOption['disqus'] == '1'){ ?>
<i class="fa fa-commenting fa-4x" style="color:#4bffff;"aria-hidden="true"></i><br>
<?php
// Added exeption for styling
if($userOption['facebook'] == '1'){ ?><br><br><br><br><br><?php }
}
// Show some content if user has accepted add-on
if($userOption['facebook'] == '1'){ ?>
<i class="fa fa-facebook fa-4x" style="color:#5f92f5;" aria-hidden="true"></i>
<?php } ?>
<br><br><a href="options.php"><h2>Enable / Disable Add-ons</h2></a>
</body>
</html>