|
|
<?php |
|
|
include 'include/menu.php'; |
|
|
$sayfasor=$db->prepare("SELECT * from sayfalar where sayfa_id=:sayfa_id order by sayfa_id ASC limit 25"); |
|
|
$sayfasor->execute(array( |
|
|
'sayfa_id' => $_GET['sayfa_id'] |
|
|
)); |
|
|
$sayfacek=$sayfasor->fetch(PDO::FETCH_ASSOC); |
|
|
?> |
|
|
<title><?php echo $sayfacek['sayfa_title'] ?></title> |
|
|
<meta name="description" content="<?php echo $sayfacek['sayfa_descr'] ?>"> |
|
|
<meta name="keywords" content="<?php echo $sayfacek['sayfa_keyword'] ?>"> |
|
|
</head> |
|
|
|
|
|
<!-- Page title --> |
|
|
<section class="p-t-100 p-b-50 text-light" id="page-title" data-parallax-image="admin/assets/img/genel/data.jpg"> |
|
|
<div id="particles-js" class="particles text-light"></div> |
|
|
<div class="container"> |
|
|
<div class="breadcrumb"> |
|
|
<ul> |
|
|
<li><a href="<?php echo $settingsprint['ayar_siteurl']; ?>">AnaSayfa</a> </li> |
|
|
<li class="active"><?php echo $sayfacek['sayfa_baslik']; ?> </li> |
|
|
</ul> |
|
|
</div> |
|
|
<div class="page-title"> |
|
|
<h1><?php echo $sayfacek['sayfa_baslik']; ?></h1> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
<!-- end: Page title --> |
|
|
|
|
|
<!-- Page Content --> |
|
|
<section id="page-content"> |
|
|
<div class="container"> |
|
|
<div class="row"> |
|
|
<!-- content --> |
|
|
<div class="content col-md-9"> |
|
|
<!-- Blog --> |
|
|
<div id="blog" class="single-post"> |
|
|
<!-- Post single item--> |
|
|
<div class="post-item"> |
|
|
<div class="post-item-wrap"> |
|
|
<div class="post-item-description"> |
|
|
<h2><?php echo $sayfacek['sayfa_baslik']; ?></h2> |
|
|
<div class="post-meta"> |
|
|
<span class="post-meta-date"><i class="fa fa-share-alt"></i><b>PAYLAŞ</b></span> |
|
|
<div class="post-meta-share"> |
|
|
<a class="btn btn-xs btn-slide btn-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://<? echo $_SERVER[ 'SERVER_NAME' ] . $_SERVER[ 'REQUEST_URI' ]; ?>"> |
|
|
<i class="fa fa-facebook"></i> |
|
|
<span>Facebook</span> |
|
|
</a> |
|
|
<a class="btn btn-xs btn-slide btn-twitter" href="https://twitter.com/intent/tweet?url=http://<? echo $_SERVER[ 'SERVER_NAME' ] . $_SERVER[ 'REQUEST_URI' ]; ?>" data-width="100"> |
|
|
<i class="fa fa-twitter"></i> |
|
|
<span>Twitter</span> |
|
|
</a> |
|
|
<a class="btn btn-xs btn-slide btn-linkedin" href="http://www.linkedin.com/shareArticle?mini=true&url=<? echo $_SERVER[ 'SERVER_NAME' ] . $_SERVER[ 'REQUEST_URI' ]; ?>" data-width="100"> |
|
|
<i class="fa fa-linkedin"></i> |
|
|
<span>linkedin</span> |
|
|
</a> |
|
|
<a class="btn btn-xs btn-slide btn-googleplus" href="https://plus.google.com/share?url=<? echo $_SERVER[ 'SERVER_NAME' ] . $_SERVER[ 'REQUEST_URI' ]; ?>" data-width="100"> |
|
|
<i class="fa fa-google"></i> |
|
|
<span>Google+ </span> |
|
|
</a> |
|
|
</div> |
|
|
</div> |
|
|
<p><?php echo $sayfacek['sayfa_icerik']; ?></p> |
|
|
|
|
|
</div> |
|
|
</div> |
|
|
</div> |
|
|
<!-- end: Post single item--> |
|
|
</div> |
|
|
|
|
|
</div> |
|
|
<!-- end: content --> |
|
|
|
|
|
<?php include'include/sidebar.php'; ?> |
|
|
</div> |
|
|
</div> |
|
|
</section> |
|
|
<!-- end: Page Content --> |
|
|
|
|
|
<?php include 'include/footer.php'; ?> |
|
|
|