Viewing file: news.php (5.51 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include('admin/app/core.php'); $postloop = post_loop();
?> <!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <title>Tri-Special Utility District</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- stylesheets --> <link rel="stylesheet" type="text/css" href="css/compiled/theme.css"> <link rel="stylesheet" type="text/css" href="css/vendor/animate.css"> <link rel="stylesheet" type="text/css" href="css/vendor/flexslider.css">
<!-- javascript --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script src="js/bootstrap/bootstrap.min.js"></script> <script src="js/vendor/jquery.flexslider.min.js"></script> <script src="js/vendor/jquery.validate.min.js"></script> <script src="js/theme.js"></script>
<!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <script> $(function(){ $("#copyright").load("copyright.php"); }); </script> </head> <body id="about-us"> <header class="navbar navbar-inverse normal" role="banner"> <div class="container"> <div class="navbar-header"> <button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="index.html" class="navbar-brand"><img src="images/logo.png" alt="trisud"/></a> </div> <nav class="collapse navbar-collapse bs-navbar-collapse" role="navigation"> <ul class="nav navbar-nav navbar-right"> <li><a href="index.html#">Home</a></li>
<li class="dropdown"> <a href="index.html#" class="dropdown-toggle" data-toggle="dropdown"> About <b class="caret"></b> </a> <ul class="dropdown-menu"> <li><a href="aboutus.html">About us</a></li> <li><a href="faq.html">FAQ</a></li> <li><a href="contact.html">Location</a></li> <li><a href="personnel.html">Personnel</a> <li><a href="directors.html">Board of Directors</a></li> </ul> </li> <li class="dropdown"> <a href="index.html#" class="dropdown-toggle" data-toggle="dropdown"> Service <b class="caret"></b> </a> <ul class="dropdown-menu"> <li><a href="system.php">System Status</a></li> <li><a href="rates.html">Rates & Policies</a></li> <li><a href="meter.html">Meter Reading</a></li> <li><a href="payment.html">Bill Payment</a></li> <li><a href="forms.html">Forms & Reports</a></li> <li><a href="request.html">Request Service</a></li> </ul> </li> <li><a href="news.php" >News</a></li>
<li><a href="contact.html">Contact</a></li> <li><a><strong><span style="color:#93c1fc;">(903) 572-3676</span></strong></a></li> </ul>
</nav> </div> </header>
<div id="slider"> <div class="container"> <div class="row header"> <div class="col-md-12">
<h3>News & Notices</h3>
<?php echo $postloop;?>
<br> <b>General Notices</b><br> <p>Please notify us at 903-572-3676 if your power goes out. We have pump stations at various locations and if you lose power, there is a possibility we have a pump station out as well and this could mean a disruption in your water service. By notifying us, you can alert us to check our locations and use generators if necessary to keep your water flowing.</p>
<p>When possible, we try to contact delinquent customers by phone before locking the meter. It is a courtesy, not a requirement. It is the customer’s responsibility to keep your contact information (such as mailing address, phone number, new renter) current so we can reach you in the event of an emergency.</p>
<p>We do not locate residential water lines, but ALWAYS call 903-572-3676 to request a locate before you dig. We will locate any of our lines on your property. Should you dig without this request and hit a water line, you will be liable for the repair cost.</p> </div> </div>
</div> </div> </div>
<div id="cta"> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="wrapper clearfix"> <h4>Committed to Providing Clean, Safe & Affordable Water to Our Customers.</h4> <a href="http://trisud.com/request.html" class="button button-small">Request Service</a> </div> </div> </div> </div> </div>
<div id="footer"> <div class="container"> <div class="row"> <div class="col-sm-8 copyright"> <div id="copyright"></div> </div> <div class="col-sm-2 menu"> <ul>
</ul> </div> <div class="col-sm-2 social">
</div> </div> </div> </div>
<script type="text/javascript"> $(function() { $('.flexslider').flexslider({ directionNav: false, slideshowSpeed: 4000 }); $('[data-toggle="tooltip"]').tooltip(); }); </script> </body> </html>
|