Make WordPress Themes

source: ashe/1.9.9.3/single.php

Last change on this file was 140318, checked in by themedropbox, 5 years ago

New version of Ashe - 1.9.7.99.03

File size: 1.2 KB
Line 
1<?php get_header(); ?>
2
3<!-- Page Content -->
4<div class="main-content clear-fix<?php echo ( ashe_options( 'general_single_width' ) === 'boxed'  ) ? ' boxed-wrapper': ''; ?>" data-sidebar-sticky="<?php echo esc_attr( ashe_options( 'general_sidebar_sticky' )  ); ?>">
5
6
7        <?php
8
9        // Sidebar Alt
10        get_template_part( 'templates/sidebars/sidebar', 'alt' ); 
11
12        // Sidebar Left
13        get_template_part( 'templates/sidebars/sidebar', 'left' );
14
15        ?>
16
17        <!-- Main Container -->
18        <div class="main-container">
19
20                <?php
21
22                // Single Post
23                get_template_part( 'templates/single/post', 'content' );
24
25                // Author Description
26                if ( ashe_options( 'single_page_show_author_desc' ) === true ) {
27                        get_template_part( 'templates/single/author', 'description' );
28                }
29
30                // Single Navigation
31                get_template_part( 'templates/single/single', 'navigation' );
32       
33                // Related Posts
34                ashe_related_posts( esc_html__( 'You May Also Like','ashe' ), ashe_options( 'single_page_related_orderby' ) );
35
36                // Comments
37                get_template_part( 'templates/single/comments', 'area' );
38
39                ?>
40
41        </div><!-- .main-container -->
42
43
44        <?php // Sidebar Right
45
46        get_template_part( 'templates/sidebars/sidebar', 'right' );
47
48        ?>
49
50</div><!-- .page-content -->
51
52<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.