...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%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
/**
* Single Portfolio Page
*
* @package greenture
*/
get_header(); ?>
<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 if ( have_posts() ):
while ( have_posts() ): the_post();
$portfolio_date = $portfolio_client = '';
$portfolio_client = get_post_meta( $post->ID, 'greenture_client_name', true );
$portfolio_date = get_post_meta( $post->ID, 'greenture_portfolio_date', true );
$jobs = get_post_meta( $post->ID, 'greenture_completed_jobs', true );
$portfolio_full_img = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>
<div class="portfolio-single">
<div class="portfolio-content-inner clearfix">
<div <?php post_class() ?> id="portfolio-<?php the_ID(); ?>">
<div class="entry-content">
<div class="row">
<div class="col-xs-12">
<?php if( isset( $portfolio_full_img[0] ) && $portfolio_full_img[0] != '' ) { ?>
<div class="portfolio-gallery portfolio-image">
<a href="<?php echo esc_url( $portfolio_full_img[0] ); ?>" data-rel="prettyPhoto" title="<?php the_title_attribute();?>"><img class="img-responsive" src="<?php echo esc_url( $portfolio_full_img[0] ); ?>" alt="<?php the_title(); ?>" /></a>
</div>
<?php } ?>
<!-- ============ Portfolio Details ============ -->
<div class="portfolio-details clearfix">
<?php if( isset( $jobs ) && $jobs != '' ) { ?>
<div class="portfolio-box">
<strong><?php esc_html_e('Completed Jobs', 'greenture') ?> : </strong>
<span class="portfolio-jobs">
<?php echo esc_attr( $jobs ); ?>
</span>
</div>
<?php } ?>
<?php if( isset( $portfolio_date ) && $portfolio_date != '' ) { ?>
<div class="portfolio-box">
<strong><?php esc_html_e('Date', 'greenture') ?> : </strong>
<span class="portfolio-date">
<?php echo esc_attr( $portfolio_date ); ?>
</span>
</div>
<?php } ?>
<?php if( isset( $portfolio_client ) && $portfolio_client != '' ) { ?>
<div class="portfolio-box">
<strong><?php esc_html_e('Client', 'greenture') ?> : </strong>
<span class="portfolio-client">
<?php echo esc_attr( $portfolio_client ); ?>
</span>
</div>
<?php } ?>
<?php if( get_the_term_list($post->ID, 'portfolio_categories', '', ',', '') ) { ?>
<div class="portfolio-box">
<strong><?php esc_html_e('Categories', 'greenture') ?> : </strong>
<span class="portfolio-terms">
<?php echo get_the_term_list($post->ID, 'portfolio_categories', '', ', ', ''); ?>
</span>
</div>
<?php } ?>
<?php if( get_the_term_list($post->ID, 'portfolio_skills', '', ',', '') ) { ?>
<div class="portfolio-box">
<strong><?php esc_html_e('Tags', 'greenture') ?> : </strong>
<span class="portfolio-terms">
<?php echo get_the_term_list($post->ID, 'portfolio_skills', '', ', ', ''); ?>
</span>
</div>
<?php } ?>
</div>
</div>
<div class="col-xs-12 portfolio-single-content">
<div class="portfolio-content">
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php greenture_postnavigation();
endwhile;
else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div>
</div><!-- #single-sidebar-container -->
</div><!-- #main-wrapper -->
</div><!-- .container -->
<?php get_footer(); ?>