feat: iqon.com full backup and design audit

- 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>
This commit is contained in:
Sergei Vasilev
2026-05-18 12:58:44 +03:00
parent 212909283c
commit 2fadc15923
52 changed files with 2208 additions and 0 deletions
@@ -0,0 +1,72 @@
<?php error_reporting(E_ERROR | E_PARSE); ?>
<?php get_header(); ?>
<?php
include 'paginare-script.php';
?>
<?php if (!in_array($selected_object_id, array(1,25,26))) { ?>
<div class="contentleft">
<h1 class="fontsize20 marginbottom20">Career opportunities:</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"'; ?>>&raquo; <?=$cat->name;?> (<?php echo $cat->count; ?>)</a>
<div id="linie-punctata"></div>
<?php } ?>
</div>
<div class="contentright">
<?php } ?>
<?php
wp_reset_query();
if (!intval($selected_department)) $args = array( 'posts_per_page' => $per_page, 'cat' => $selected_object_id, 'post_type' => 'post', 'post_status' => 'publish', 'paged' => $current_page );
else $args = array( 'posts_per_page' => $per_page, 'cat' => $selected_department, 'post_type' => 'post', 'post_status' => 'publish', 'paged' => $current_page );
query_posts($args);
while ( have_posts() ) : the_post();
if (in_array($selected_object_id, array(1,25,26))) {
$id_featured = 0;
if (has_post_thumbnail()) {
$id_featured = get_post_thumbnail_id();
$imagine_featured = wp_get_attachment_image_src($id_featured, 'post-thumbnail');
}
}
?>
<?php if (in_array($selected_object_id, array(1,25,26))) { ?>
<div class="caseStudyRow">
<?php if ($id_featured && $imagine_featured[0]) { ?>
<div class="container_imagine floatleft marginright20">
<a href="<?=get_permalink($latest_case[0]->ID); ?>"><img src="<?=$imagine_featured[0];?>" /></a>
</div>
<?php } ?>
<h2><a href="<?php echo get_permalink();?>"><?php the_title();?></a></h2>
<?php //echo apply_filters('the_content',short_text(get_the_content(), 500));
echo short_text(get_the_content(), 500, '...');
?>
<div class="button_read <?php if ($id_featured && $imagine_featured[0]) { ?>readCaseStudy<?php } else { ?>margintop10<?php } ?>"><a href="<?=get_permalink($latest_case[0]->ID); ?>"><img src="/wp-content/themes/iqon/images/read.png" /></a></div>
<div class="clear"></div>
</div>
<?php } else { ?>
<div class="caseStudyRow">
<h2><a href="<?php echo get_permalink();?>"><?php the_title();?></a></h2>
<?php //echo apply_filters('the_content',short_text(get_the_content(), 500));
echo short_text(get_the_content(), 500, '...');
?>
<div class="button_read <?php if ($id_featured && $imagine_featured[0]) { ?>readCaseStudy<?php } else { ?>margintop10<?php } ?>"><a href="<?=get_permalink($latest_case[0]->ID); ?>"><img src="/wp-content/themes/iqon/images/read_job.png" /></a></div>
<div class="clear"></div>
</div>
<?php } ?>
<?php
endwhile;
wp_reset_query();
?>
<?php
include 'paginare-template.php';
?>
<?php if (!in_array($selected_object_id, array(1,25,26))) { ?>
<?php if ( !have_posts() ) { ?>
If you want to apply for a position within the Iqon company, please submit your resume by pressing the following button.<br/><br/>
<a href="mailto:office@iqon.com?subject=Submit CV from website"><img src="/wp-content/themes/iqon/images/submit_cv.png" /></a>
<?php } ?>
</div>
<div class="clear"></div>
<?php } ?>
<?php get_footer(); ?>