File: /home/puthuppa/www/church-activities.php.bak
<?php include('controlpanel/includes/toolBox.php'); ?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Puthuppally Pally</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png" type="image/x-icon">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="src/css/jquery.mmenu.all.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<link href="responsive.css" rel="stylesheet">
<script src="js/jquery-1.11.1.min.js"></script>
</head>
<body>
<?php include("header.php"); ?>
<div class="contain">
<div class="lay">
<div class="shead">
<div>Church Activities</div>
</div>
</div>
</div>
<div class="contain bT pTB">
<div class="lay">
<div class="contain">
<?php
$aboutusrows=firesql("SELECT * FROM cms_activity ORDER BY ac_id ASC ",'res');
while($aboutusres=mysqli_fetch_assoc($aboutusrows))
{
extract($aboutusres);
?>
<div class="article-ca">
<div class="left-img"><img src="controlpanel/uploads/churchactivity/<?php echo $ac_image ?>" alt=""></div>
<div class="right-cnt">
<h5><?php echo $ac_title ?></h5>
<p class="p-w-i">
<?php echo $ac_description ?>
</p>
</div><div class="clear"></div>
</div><div class="clear"></div>
<?php
}
?>
</div>
</div>
</div><div class="clear"></div>
<?php include("footer.php"); ?>
<div class="banned-buttons"><a class="ban-b1 liveStreamOpen" id="mute"><img src="css/elements/live.png" alt="LIVE STREAM" draggable="false">LIVE STREAM</a>
<a href="donation-cart.php" class="ban-b2"><img src="css/elements/donate.png" alt="NERCHAS" draggable="false">NERCHAS</a>
<a href="prayer-request.php" class="ban-b3"><img src="css/elements/prayer.png" alt="PRAYER REQUEST" draggable="false">PRAYER REQUEST</a></div>
<section class="liveStreamWindow poparticle">
<div class="popsection">
<div class="container">
<!---
<div class="streamFrame"><iframe width="550" height="350" src="http://eventsonlive.com/live_player/live/webstream_CDNnetwork/index.php" scrolling="yes"allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen"></iframe><div class="streamClose"><i class="fa fa-minus closepup"></i></div>
--->
<div class="streamFrame"><iframe width="550" height="350" src="http://puthuppallylive.com/" scrolling="yes" allowfullscreen="allowfullscreen"
mozallowfullscreen="mozallowfullscreen"
msallowfullscreen="msallowfullscreen"
oallowfullscreen="oallowfullscreen"
webkitallowfullscreen="webkitallowfullscreen"></iframe><div class="streamClose"><i class="fa fa-minus closepup"></i></div></div>
</div>
</div>
</section>
<div class="popoverlay"></div>
<script>
$('.liveStreamOpen').click(function() {
$('.popoverlay').addClass('active');
$('.liveStreamWindow').delay(300).queue(function(){
$(this).addClass('active').clearQueue();
});
});
$('.closepup').click(function() {
$('.liveStreamWindow').removeClass('active');
$('.popoverlay').removeClass('active');
});
$(".banned-buttons a").hover(function(){
var a = $(this).width();
$(this).animate({left: -a}, 500);
},function(){
$(this).animate({left: '-44px'}, 400);
});
$("#mute").click(function(){
var audio = document.getElementById('background_audio');
audio.pause();
});
</script>
</body>
</html>