
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
require_once 'admin/includes/settings/PDODB.php';
include 'admin/includes/modules/functions.php';
$function = new FUNCTIONS();
//blog
$blogdata = $function->getBlog($id=$_GET['id'],$isactive=1,$orderBy='DESC');
//print_r($blogdata[0]);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<link rel="stylesheet" type="text/css" href="assets/css/plugins.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- Primary Meta Tags -->
<title><?=$blogdata[0]['title'];?></title>
<meta name="title" content="<?=$blogdata[0]['title'];?>" />
<meta name="description" content="" />
<meta name="image" content="https://www.ireneslegal.com/admin/uploads/blog/<?=$blogdata[0]['file'];?>" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:title" content="<?=$blogdata[0]['title'];?>" />
<meta property="og:description" content="" />
<meta property="og:image" content="https://www.ireneslegal.com/admin/uploads/blog/<?=$blogdata[0]['file'];?>" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:title" content="<?=$blogdata[0]['title'];?>" />
<meta property="twitter:image" content="https://www.ireneslegal.com/admin/uploads/blog/<?=$blogdata[0]['file'];?>" />
</head>
<body>
<?php include_once'header.php';?>
<div class="container-fluid">
<div class="container">
<div class="row pb-5">
<div class="col-lg-9">
<div class="row pb-5">
<div class="col-lg-12 mt-4 mt-lg-0">
<img class="img-fluid rounded" src="admin/uploads/blog/<?=$blogdata[0]['file'];?>">
<h1 class="mb-4"><?=$blogdata[0]['title'];?></h1>
<?=html_entity_decode($blogdata[0]['full_description']);?>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include_once'footer.php';?>
<!-- modal -->
<div class="modal fade bd-example-modal-lg" id="disclaimerModal" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Disclaimer</h5>
<!-- <button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button> -->
</div>
<div class="modal-body">
<p>The Bar Council of India does not permit advertisement or solicitation by advocates in
any form or manner. By accessing this website, www.ireneslegal.in, you acknowledge
and confirm that:</p>
<ul>
<li>You are seeking information relating to Irene’s Legal of your own accord and that there has been no form of solicitation, advertisement or inducement by Irene’s Legal or its members.</li>
<li>The content of this website is for informational purposes only and should not be interpreted as soliciting or advertisement.</li>
<li>No material/information provided on this website should be construed as legal advice.</li>
<li>Any information obtained or downloaded by the user from our website does not lead to the creation of the client – attorney relationship between the Firm and the user</li>
<li>Irene’s Legal shall not be liable for consequences of any action taken by relying on the material/information provided on this website</li>
<li>You acknowledge that your information will be used in accordance with Privacy Policy and Terms Of Use.</li>
</ul>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-primary" data-dismiss="modal" aria-label="Close">I Agree</button>
<button type="button" class="btn btn-secondary" data-dismiss="modal" disabled>I Disagree</button>
</div>
</div>
</div>
</div>
<!-- end modal -->
<a href="javascript:void(0)" class="btn btn-primary px-3 back-to-top"><i class="fa fa-angle-double-up"></i></a>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/easing.min.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/owl.carousel.min.js"></script>
<script src="assets/js/moment.min.js"></script>
<script src="assets/js/moment-timezone.min.js"></script>
<script src="assets/js/tempusdominus-bootstrap-4.min.js"></script>
<script src="assets/js/main.js"></script>
<!-- <script type="text/javascript">
setTimeout(function () {
$('#disclaimerModal').modal('show');
}, 1000); //30 seconds
$('#disclaimerModal').modal({backdrop: 'static', keyboard: false})
</script> -->
</body>
</html>


PK 99