Advertisement
Guest User

Untitled

a guest
May 13th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Transporta saraksts
  4.  *
  5.  * @package Listify
  6.  */
  7.  
  8. get_header();
  9.  
  10. ?>
  11. <script src="<?php bloginfo( 'stylesheet_directory' ); ?>/js/transport.js"></script>
  12.     <?php while ( have_posts() ) : the_post(); ?>
  13.  
  14.         <div <?php echo apply_filters( 'listify_cover', 'page-cover entry-cover', array( 'size' => 'full' ) ); ?>>
  15.             <h1 class="page-title cover-wrapper"><?php the_title(); ?></h1>
  16.         </div>
  17.  
  18.         <?php do_action( 'listify_page_before' ); ?>
  19.  
  20.         <div id="primary" class="container">
  21.             <div class="content-area">
  22.  
  23.                 <main id="main" class="site-main" role="main">
  24.  
  25.                     <?php if ( listify_has_integration( 'woocommerce' ) ) : ?>
  26.                         <?php wc_print_notices(); ?>
  27.                     <?php endif; ?>
  28. <?php get_template_part( 'content', 'page' ); ?>
  29.  
  30.  
  31.  
  32.                 </main>
  33.  
  34.             </div>
  35.         </div>
  36.  
  37.     <?php endwhile; ?>
  38.  
  39. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement