2fadc15923
- Server backup: PHP source files, theme assets, fonts, images, wp-config.php (masked), .htaccess, sitemaps, manifest - Design audit: comparison with Open Design systems (Corporate, Clean, Modern, Bold), critical issues, SEO problems, 3-phase change plan, new_redesign analysis - All files downloaded from production server via Code Snippets Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
52 lines
2.6 KiB
PHP
52 lines
2.6 KiB
PHP
<?php get_header(); ?>
|
|
<?php if ($selected_object_id != 1) { ?>
|
|
<div class="contentleft">
|
|
<h1 class="fontsize20 marginbottom20">Departments:</h1>
|
|
<?php
|
|
$categories = get_categories(array('parent'=>7, 'hide_empty' => false));
|
|
?>
|
|
<?php foreach ($categories as $cat) { ?>
|
|
<a href="<?php echo get_category_link($cat->term_id);?>" title="<?php echo $cat->name; ?>" <?php if ($selected_department == $cat->term_id) echo 'class="active"'; ?>>» <?=$cat->name;?> (<?php echo $cat->count; ?>)</a>
|
|
<div id="linie-punctata"></div>
|
|
<?php } ?>
|
|
</div>
|
|
<div class="contentright">
|
|
<?php } ?>
|
|
<?php
|
|
while ( have_posts() ) : the_post();
|
|
if ($selected_object_id == 1 || $selected_object_id == 25 || $selected_object_id == 26) {
|
|
$id_featured = 0;
|
|
if (has_post_thumbnail()) {
|
|
$id_featured = get_post_thumbnail_id();
|
|
$imagine_featured = wp_get_attachment_image_src($id_featured, 'case-study');
|
|
}
|
|
}
|
|
?>
|
|
<?php if ($selected_object_id == 1 || $selected_object_id == 25 || $selected_object_id == 26) { ?>
|
|
<?php if ($id_featured && $imagine_featured[0]) { ?>
|
|
<div class="imagine_study_interior"><img src="<?php echo $imagine_featured[0];?>" /></div>
|
|
<?php } ?>
|
|
<h1 class="single"><?php the_title();?></h1>
|
|
<?php $h2 = get_post_meta($post->ID, 'wpcf-intro', true); ?>
|
|
<?php if ($h2) { ?><h2 class="single"><?=$h2;?></h2><?php } ?>
|
|
<?php the_content();?>
|
|
<div class="timp">posted on: <strong><?php the_time('F jS, Y'); ?></strong></div>
|
|
<?php $case_file = get_post_meta($post->ID, 'wpcf-case-file', true); ?>
|
|
<?php } else { ?>
|
|
<h2><?php the_title();?></h2>
|
|
<?php the_content();?>
|
|
<br />
|
|
<a href="mailto:office@iqon.com?subject=<?php the_title(); ?>"><img src="/wp-content/themes/iqon/images/submit_cv.png" /></a>
|
|
<div class="disclaimer">
|
|
<strong>Disclaimer:</strong> Iqon Romania takes all necessary measures to keep your personal information private and secure. Only authorized Iqon Romania staff, Third Party companies (i.e. service providers) staff or our business partners' authorized staff (who have contractually agreed to keep all information secure) have access to your personal information.
|
|
</div>
|
|
<?php } ?>
|
|
<?php
|
|
endwhile;
|
|
wp_reset_query();
|
|
?>
|
|
<?php if ($selected_object_id != 1) { ?>
|
|
</div>
|
|
<div class="clear"></div>
|
|
<?php } ?>
|
|
<?php get_footer(); ?>
|