-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.php
46 lines (46 loc) · 1.66 KB
/
post.php
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
<?php
require('functions/dbconn.php');
require('functions/get_settings_for_post.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<?php
echo($blog_name_settings);
?>
</title>
<link rel="stylesheet" href=<?php echo("css/".$css_settings."main.css"); ?>>
<link rel="stylesheet" href=<?php echo("css/".$css_settings."post.css"); ?>>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
</head>
<body>
<div class="container-fluid">
<header>
<?php
require('elements/header.php');
?>
</header>
<div class="row content justify-content-md-center">
<div class="col-xxl-6 content-text">
<?php require('functions/post.php') ?>
</div>
<?php
if($active_aside_settings == 1){
require('elements/aside.php');
}
?>
</div>
<footer>
<?php
require('elements/footer.php');
$conn = null;
?>
</footer>
</div>
</body>
</html>