PHP Classes

File: template.php

Recommend this page to a friend!
  Classes of Vishv Sahdev   Panchang Calendar   template.php   Download  
File: template.php
Role: Auxiliary script
Content type: text/plain
Description: template
Class: Panchang Calendar
Display the astrological Panchang calendar
Author: By
Last change:
Date: 7 years ago
Size: 2,622 bytes
 

Contents

Class file image Download
<html>
<head>
<title><?PHP if(isset($output['title'])) echo $output['title']; ?></title>
<?PHP if(isset($output['des'])) echo $output['des']; ?>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<style>
<style>
    .cal-card:hover{
    background-color: #FCFED8;

    }
    .cal-card{
    border: 1px solid #FEF0D8;
    }
    .card{

    overflow: hidden;
    }
    #search_panel {
    text-align: center;
    padding: 20px;
    }
    .hed{
    font-size: 62px;
    font-weight: 700;
    color: #287c90;
    text-align: center;
    }
    .le {
    font-size: 18px;
    text-align: center;
    color: #6B99A8;
    }

    .hedh{
    font-size: 62px;
    font-weight: 700;
    color: #D21B1B;
    text-align: center;
    }
    .leh {
    font-size: 18px;
    text-align: center;
    color: #B96B6B;
    }
    .today {

    background-color: #F6DDCC;
    }
    span {
    color: #287c90;
    }
    .imgmoon{
    position: absolute;
    top: 0px;
    right: 0px;
    }
    .imgm{
    position: relative;
    }
    #result{
    z-index: 999;
    -webkit-box-shadow: 0px 0px 15px 5px rgba(255, 255, 100, .80);
    -moz-box-shadow: 0px 0px 15px 5px rgba(255, 255, 100, .80);
    }
    .ib{

    position: absolute;
    bottom: 0px;
    right: 1px;
    }
    .imgTop {
    display: block;
    text-align: right;
    }
    </style>
<?PHP if(isset($output['head'])) echo $output['head']; ?>
<?PHP
if(isset($output['style'])) echo $output['style']; ?>
</head>
<body>

<div class="container">
    <div class="row">
        <div class="col-sm-12 col-md-12"><h1> Demo </h1></div>
              <div class="col-sm-3"><div class="row"><div class="col-sm-12">
                <?
       
if(isset($output['leftcontent']))
        echo
$output['leftcontent'];
       
?>
</div></div></div>
              <div class="col-sm-9"><div class="row"><div class="col-sm-12">
                <?
       
if(isset($output['maincontent']))
        echo
$output['maincontent'];
       
?>

              
               
        <?
       
if(isset($output['comment']))
        echo
$output['comment'];
       
?>
</div></div></div>
      </div>
</div>
   
<footer class="footer">
    <div class="container">
        <div class="row">
            <div class="col-sm-12 col-md-12">
                <p class="text-muted">&copy; 2015 Company Name All right reserved. <span class="pull-right">yourdomain.com</span></p>
            </div>
        </div>
    </div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<?PHP if(isset($output['script'])) echo $output['script']; ?>
</body>
</html>