E:
/
home
/
kbcomunicacao1
/
Web
/
ibape
/
Upload File
HOME
<?php require_once 'controllers/topo.php'; $query = "SELECT * FROM cw_apresentacao WHERE id_apresentacao='1'"; $result = DBExecute($query); $res = mysqli_fetch_assoc($result); ?> <!--page title--> <div class="dzsparallaxer auto-init height-is-based-on-content " data-options='{ direction: "reverse"}'> <div class="divimage dzsparallaxer--target " style="width: 100%; height: 100%; background-image: url(adm/upload/uploads/<?php echo $res['img_apresentacao']; ?>)"> </div> <div class="container pt100"> <div class="row"> <div class="col-md-8 ml-auto mr-auto wow bounceIn"> <h3 class="h3 mb30 text-center pt100 pb100 font300 text-white"></h3> </div> </div> </div> </div><!--parallax--> <!--/.page-title--> <div class="col-md-11 pt20" style="max-width: 90%; margin: auto"> <h4 class="h6 font500" style="font-family: Calibri; font-size: 21px; color: #000; margin-bottom: -10px"><img src="images\icons\PNG\apresentacao.png" style="margin-bottom: 13px; margin-right: 5px"><strong>APRESENTAÇÃO</strong></h4> <hr> </div> <div class="col-md-11 pt20 pb50" style="max-width: 90%; margin: auto"> <div class="row"> <p style="font-family: Calibri; color: #000; text-align: justify;"> <?php echo $res['texto_apresentacao']; ?> </p> </div> </div> <section class="cd-horizontal-timeline" style="margin-top: -50px"> <div class="events-content" style="font-style:italic; text-align: justify"> <ol style="list-style: none; margin-left: -50px"> <?php $query = "SELECT * FROM cw_timeline"; $link = DBConnect(); $result = @mysqli_query($link, $query) or die(mysqli_error($link)); $tm = 0; while($res = mysqli_fetch_assoc($result)){ if($tm==0){$selected = "selected";}else{$selected = "";} ?> <li class="<?php echo $selected; ?>" data-date="<?php echo $res['data_timeline']; ?>"> <p style="font-family: Calibri; color: #000; font-size: 14px"><?php echo $res['texto_timeline']; ?> </p> </li> <?php $tm++; } ?> </ol> </div> <!-- .events-content --> <div class="timeline"> <div class="events-wrapper"> <div class="events"> <ol style="list-style: none;"> <?php $query = "SELECT * FROM cw_timeline"; $link = DBConnect(); $result = @mysqli_query($link, $query) or die(mysqli_error($link)); $tm = 0; while($res = mysqli_fetch_assoc($result)){ if($tm==0){$selected = "selected";}else{$selected = "";} ?> <li><a href="#0" data-date="<?php echo $res['data_timeline']; ?>" class="<?php echo $selected; ?>"><?php echo $res['ano_timeline']; ?></a></li> <?php $tm++; } ?> </ol> <span class="filling-line" aria-hidden="true"></span> </div> <!-- .events --> </div> <!-- .events-wrapper --> <ul class="cd-timeline-navigation" style="list-style: none;"> <li><a href="#0" class="prev inactive">Prev</a></li> <li><a href="#0" class="next">Next</a></li> </ul> <!-- .cd-timeline-navigation --> </div> <!-- .timeline --> </section> <?php require_once 'controllers/footer.php'; ?>