OwlCyberSecurity - MANAGER
Edit File: index.php
<?php get_header(); ?> <div class="col-md-10 box-central"> <h2 class="barra-rosa titulo">Blog</h2> <div class="text-justify box-central-texto"> <?php while (have_posts()) : the_post(); ?> <div class="row"> <div class="col-sm-3"> <a href="<?php the_permalink() ?>"> <?php the_post_thumbnail('full', ['style' => 'width:100%; height:auto']); ?> </a> </div> <div class="col-sm-9"> <div class="pull-right"> <br> <small> Publicado em: <?php the_time('d / m'); ?> </small> </div> <h3> <a href="<?php the_permalink() ?>"><?php the_title() ?></a> </h3> <?php the_excerpt() ?> </div> </div> <hr> <?php endwhile; ?> </div> </div> <?php get_footer();