<?php define('LOCATION', 'site'); define('PAGE', 'noticias-interna'); require_once('config/_fixed-cms.php'); include('_header.inc.php'); ?> <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-53ea526d735367f9"></script> <? $data = explode(' ',$resNoticia['created']); $data = $data[0]; $dia = (date('d', strtotime($data))); $mes = (date('M', strtotime($data))); $ano = (date('Y', strtotime($data))); ?> <!-- BREADCRUMBS -->    <div class="page-header"> <div class="container">            <h1 class="page-title pull-left"><?php echo $resNoticia['titulo']; ?></h1> <ol class="breadcrumb">                <li><a href="#">Home</a></li> <li><a href="#">Páginas</a></li>                <li><a href="#">Notícias</a></li> <li class="active"><?php echo $resNoticia['titulo']; ?></li>            </ol> </div>    </div> <!-- END BREADCRUMBS --> <!-- PAGE CONTENT -->    <div class="page-content"> <div class="container">            <!-- BLOG SINGLE --> <div class="blog single full-thumbnail">                <!-- blog post --> <article class="entry-post">                    <header class="entry-header"> <h2 class="entry-title">                            <?php echo $resNoticia['titulo']; ?> </h2>                    </header> <div class="entry-content clearfix">                        <figure class="featured-image"> <div class="post-date-info clearfix"><span class="post-month"><?=$mes?></span><span class="post-date"><?=$dia?></span><span class="post-year"><?=$ano?></span></div>                            <?php if ($resNoticia['img'] == 1) { ?> <div class="right" style="margin-left:1px;"> <img src="<?php echo PATH_UPLOAD; ?>/noticias/noticia-<?php echo $resNoticia['id']; ?>.png" alt="<?php echo $resNoticia['titulo']; ?>" title="<?php echo $resNoticia['titulo']; ?>" class="img-responsive" /></div>                            <? } ?> </figure>                        <div class="excerpt"> <?php echo stripslashes($resNoticia['descricao']); ?>                        </div> </div>                </article> <!-- end blog post -->                <hr> <!-- social sharing -->                <div class="social-sharing clearfix"> <h3 class="section-heading pull-left">Compartilhe: </h3>                    <ul class="list-inline sharing-tools"> <li><div class="addthis_sharing_toolbox"></div></li>                    </ul> </div>                <!-- end social sharing --> <hr>                <!-- comments --> <article class="comments">                    <div class="fb-comments" data-href="<?php echo LINK_SITE; ?>/noticias/<?php echo $resNoticia['titulo_slug']; ?>" data-width="100%" data-numposts="5" data-colorscheme="light"></div> </article>                <!-- end comments --> <hr>            </div> <!-- END BLOG SINGLE -->            <ul class="pager"> <li><a href="#">Voltar</a></li>            </ul> </div>    </div> <!-- END PAGE CONTENT --> <?php include('_footer.inc.php'); ?>