%PDF- %PDF-
Direktori : /var/www/tif-dev/wp-content/themes/inkfactory/ |
Current File : //var/www/tif-dev/wp-content/themes/inkfactory/archive-piercing.php |
<?php /** * The template for displaying archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Inkfactory */ get_header(); ?> <div class="container"> <div class="gallery"> <?php while (have_posts()) : the_post(); ?> <div class="gallery__item"> <?php the_post_thumbnail('medium', array('class' => 'img-responsive')); ?> <div class="gallery__item-content"> <h3 class="h3"><?php the_title(); ?></h3> <a href="<?php the_permalink(); ?>" class="btn btn_violet btn_big"> <span>GO</span> <span>></span> </a> </div> </div> <?php endwhile; ?> </div> </div> <!-- Pagination --> <?php wp_custom_pagination(); ?> <?php get_footer();