
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=NULL,$isactive=1,$orderBy='DESC');
//end blog
?>
<!DOCTYPE html>
<html>
<head>
<title>Irenes legal | Publications</title>
<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">
<!-- seo tag -->
<meta name="title" content="Irene’s Legal">
<meta name="description" content="We are proud that the firm has been recognised for its commitment to diversity, equality and sustainability.">
<meta name="keywords" content="Criminal, POCSO,IPR, Civil, Matrimonial, Property related disputes, Contract Drafting & Review, Media & Entertainment Laws, Authorship Agreements, Artist Agreements, Personality Rights, Copyrights, Virtual Office Agreements, Co-working Space Agreements, Loan Agreements, Lease Deeds, ">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<!-- og tage -->
<meta property="og:title" content="Irene’s Legal" />
<meta property="og:description" content="We are proud that the firm has been recognised for its commitment to diversity, equality and sustainability." />
<link rel="stylesheet" type="text/css" href="assets/css/plugins.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<style type="text/css">
.imgbox {
display: inline-block;
height: 220px;
overflow-y: hidden;
}
.card {
min-height: 400px;
}
.text-4line {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 8; /* number of lines to show */
line-clamp: 8;
-webkit-box-orient: vertical;
}
</style>
</head>
<body>
<?php include_once'header.php';?>
<div class="container-fluid bg-page-header" style="margin-bottom:90px;">
<div class="container">
<div class="d-flex flex-column align-items-center justify-content-center" style="min-height:400px">
<h3 class="display-3 text-white text-uppercase">Publications</h3>
<div class="d-inline-flex text-white">
<p class="m-0 text-uppercase"><a class="text-white" href="index.html">Home</a></p>
<i class="fa fa-angle-double-right pt-1 px-3"></i>
<p class="m-0 text-uppercase">Publications</p>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="container">
<div class="row">
<?php
$count =0;
foreach ($blogdata as $key => $value) {
if($count % 2 == 0){ ?>
<div class="col-lg-4 pb-5">
<div class="card">
<div class="imgbox">
<img class="card-img-top" src="admin/uploads/blog/<?=$value['file'];?>">
</div>
<div class="card-body bg-white">
<h5 class="card-title"><?=$value['title'];?></h5>
<div class="card-text text-4line"><?=html_entity_decode($value['first_description']);?></div>
<a href="publication-details.php?id=<?=$value['id'];?>" class="btn btn-primary">Read more</a>
</div>
</div>
</div>
<?php } } ?>
</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