D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mybf1
/
public_html
/
botol.bf1.my
/
wp-content
/
themes
/
sketch
/
Filename :
archive-jetpack-portfolio.php
back
Copy
<?php /** * The template for displaying Archive pages for Portfolio items. * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package Sketch */ get_header(); ?> <section id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"> <?php _e( 'Portfolio', 'sketch' ); ?> </h1> </header><!-- .page-header --> <?php /* Start the Loop */ ?> <div class="portfolio-projects"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'portfolio' ); ?> <?php endwhile; ?> <?php sketch_paging_nav(); ?> </div><!-- .projects --> <?php else : ?> <?php get_template_part( 'content', 'none' ); ?> <?php endif; ?> </main><!-- #main --> </section><!-- #primary --> <?php get_footer(); ?>