-
Notifications
You must be signed in to change notification settings - Fork 5
/
header.php
50 lines (29 loc) · 1.09 KB
/
header.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
47
48
49
50
<?php
include "yonetim/inc/dbconnect.php";
?>
<?php
$ayarlarsor=$db->prepare("SELECT * FROM ayarlar");
$ayarlarsor->execute(array(0));
$ayarlar=$ayarlarsor->fetch(PDO::FETCH_ASSOC);
?>
<!doctype html>
<html lang="tr" class="no-js">
<head><title><?php echo $ayarlar['site_baslik']; ?></title>
<meta charset="utf-8">
<meta content="<?php echo $ayarlar['site_anahtar_kelimeler']; ?>" name="keywords">
<meta content="<?php echo $ayarlar['site_aciklama']; ?>" name="description">
<link rel="stylesheet" href="css/restory-assets.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script src="js/restory-assets.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<div class="container" style="background-color: #1e1f21;
width: auto;">
<div class="row">
<a href="index.php"style=" display: block;
margin: 0 auto;height: 120px;"><img src="<?php echo $ayarlar['site_logo']; ?>"style=" display: block;
margin: 0 auto;height: 120px;"></img></a>
</div>
</div><!-- /.container -->
<!-- End Header -->