...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%PDF-1.5 MRK IS HERE %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 65.108.66.160 / Your IP : 216.73.217.50 Web Server : Apache System : Linux srv16.asso.com.ar 4.18.0-553.123.1.el8_10.x86_64 #1 SMP Tue May 5 04:00:43 EDT 2026 x86_64 User : alasaweborg ( 1047) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alasaweborg/public_html/wp-content/themes/greenture/ |
Upload File : |
<?php
/**
* Archive Template
* @package greenture
*/
get_header();
$container_class = $scroll_type = '';
$blog_type = greenture_get_option( 'archive_blog_type' );
$blog_grid_columns = greenture_get_option( 'blog_grid_columns' );
if( $blog_type == 'grid' ) {
if( $blog_grid_columns != '' ) {
if( $blog_grid_columns == 'two' ) {
$container_class = 'grid-layout grid-col-2';
} elseif ( $blog_grid_columns == 'three' ) {
$container_class = 'grid-layout grid-col-3';
} elseif ( $blog_grid_columns == 'four' ) {
$container_class = 'grid-layout grid-col-4';
}
}
$post_class = 'grid-posts';
$page_type_layout = 'grid';
$image_size = 'greenture-blog-list';
$excerpt_limit = greenture_get_option( 'blog_excerpt_length_grid' );
}
elseif( $blog_type == 'large' ) {
$container_class = 'large-layout';
$post_class = 'large-posts';
$image_size = 'greenture-blog-large';
$page_type_layout = 'large';
$excerpt_limit = greenture_get_option( 'blog_excerpt_length_large' );
}
elseif( $blog_type == 'list' ) {
$container_class = 'list-layout';
$post_class = 'list-posts';
$image_size = 'greenture-blog-list';
$page_type_layout = 'list';
$list_fullwidth = greenture_get_option( 'blog_list_fullwidth' );
if( isset( $list_fullwidth ) && $list_fullwidth == 'no' ) {
$excerpt_limit = 15;
} else {
$excerpt_limit = 30;
}
if( isset( $list_fullwidth ) && $list_fullwidth == 'no' ) {
$container_class .= ' list-columns';
} else {
$container_class .= ' list-fullwidth';
}
}
if( greenture_get_option( 'disable_blog_pagination' ) ) {
$scroll_type = "infinite";
$scroll_type_class = " scroll-infinite";
}
else {
$scroll_type = "pagination";
$scroll_type_class = " scroll-pagination";
}
?>
<div class="container">
<div id="main-wrapper" class="tpath-row row">
<div id="single-sidebar-container" class="single-sidebar-container main-col-full">
<div class="tpath-row row">
<div id="primary" class="content-area <?php greenture_primary_content_classes(); ?>">
<div id="content" class="site-content">
<?php
$category = '';
$category = get_queried_object();
if( isset( $category->term_id ) && $category->term_id != '' ) {
$term_meta = get_option( "taxonomy_$category->term_id" );
} ?>
<?php if( isset( $term_meta['greenture_thumbnail_image'] ) && $term_meta['greenture_thumbnail_image'] != '' ) { ?>
<div class="archive-header">
<div class="category-image">
<img class="img-responsive" src="<?php echo esc_url( $term_meta['greenture_thumbnail_image'] ); ?>" />
</div>
</div>
<?php } ?>
<?php if( isset( $category->term_id ) && is_tag( $category->term_id ) ) {
$args['tax_query'] = array( array(
'taxonomy' => 'post_tag',
'field' => 'id',
'terms' => $category->term_id
));
} elseif( isset( $category->term_id ) ) {
$args['tax_query'] = array( array(
'taxonomy' => 'category',
'field' => 'id',
'terms' => $category->term_id
));
}
if( ! empty( $args ) ) {
new WP_Query($args);
} ?>
<div id="archive-posts-container" class="tpath-posts-container <?php echo esc_attr( $container_class ); ?><?php echo esc_attr( $scroll_type_class ); ?> clearfix">
<?php if ( have_posts() ):
while ( have_posts() ): the_post();
$post_id = get_the_ID();
$post_format = get_post_format();
$post_format_class = '';
if( $post_format == 'image' ) {
$post_format_class = ' image-format';
} elseif( $post_format == 'quote' ) {
$post_format_class = ' quote-image';
} ?>
<article id="post-<?php echo esc_attr( $post_id ); ?>" <?php post_class($post_class); ?>>
<div class="posts-inner-container clearfix">
<div class="posts-content-container">
<?php if ( has_post_thumbnail() && ! post_password_required() ) {
echo wp_kses_post(greenture_blog_featured_image( $image_size, $post_format, $page_type_layout ));
} ?>
<div class="post-content">
<div class="entry-header">
<?php
echo wp_kses_post(greenture_blog_title());
if( $page_type_layout != 'list' ) {
echo wp_kses_post(greenture_blog_entry_meta( $page_type_layout ));
} ?>
</div>
<div class="entry-summary">
<?php echo wp_kses_post(greenture_blog_content( $excerpt_limit )); ?>
</div>
<div class="entry-footer">
<?php echo wp_kses_post(greenture_blog_footer()); ?>
</div>
</div>
</div><!-- End .posts-content-container -->
</div><!-- End .posts-inner-container -->
</article><!-- End Post-ID -->
<?php endwhile;
else :
get_template_part( 'content', 'none' );
endif; ?>
</div><!-- End .archive-posts-container -->
<?php echo wp_kses_post(greenture_pagination( $pages = '', $scroll_type ));
wp_reset_postdata(); ?>
</div><!-- End #content -->
</div><!-- End #primary -->
<?php get_sidebar(); ?>
</div><!-- End .tpath-row row -->
</div><!-- End .single-sidebar-container -->
</div><!-- End #main-wrapper -->
</div><!-- End .container -->