| Line | |
|---|
| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | Template Name: Full Wide |
|---|
| 4 | * @package SKT Secure |
|---|
| 5 | */ |
|---|
| 6 | get_header(); ?> |
|---|
| 7 | <div class="container"> |
|---|
| 8 | <div class="page_content"> |
|---|
| 9 | <section id="sitefull"> |
|---|
| 10 | <?php if( have_posts() ) : |
|---|
| 11 | while( have_posts() ) : the_post(); ?> |
|---|
| 12 | <h1 class="entry-title"><?php the_title(); ?></h1> |
|---|
| 13 | <div class="entry-content"> |
|---|
| 14 | <?php |
|---|
| 15 | the_content(); |
|---|
| 16 | wp_link_pages( array( |
|---|
| 17 | 'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'skt-secure' ) . '</span>', |
|---|
| 18 | 'after' => '</div>', |
|---|
| 19 | 'link_before' => '<span>', |
|---|
| 20 | 'link_after' => '</span>', |
|---|
| 21 | 'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'skt-secure' ) . ' </span>%', |
|---|
| 22 | 'separator' => '<span class="screen-reader-text">, </span>', |
|---|
| 23 | ) ); |
|---|
| 24 | //If comments are open or we have at least one comment, load up the comment template |
|---|
| 25 | if ( comments_open() || '0' != get_comments_number() ) |
|---|
| 26 | comments_template(); |
|---|
| 27 | ?> |
|---|
| 28 | </div><!-- entry-content --> |
|---|
| 29 | <?php endwhile; endif; ?> |
|---|
| 30 | </section><!-- section--> |
|---|
| 31 | <div class="clear"></div> |
|---|
| 32 | </div><!-- .page_content --> |
|---|
| 33 | </div><!-- .container --> |
|---|
| 34 | <?php get_footer(); ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.