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,28 @@
<?php get_header(); ?>
<?php
$am_submeniu = false;
if ($object_id && $object_id_child) {
if ($meniu[$object_id]->childrens[$object_id_child]->childrens) $am_submeniu = true;
}
?>
<?php if ($am_submeniu) { ?>
<div class="contentleft">
<h1 class="fontsize20 marginbottom20">Services:</h1>
<?php foreach ($meniu[$object_id]->childrens[$object_id_child]->childrens as $subMenu) { ?>
<div class="submeniu"><a href="<?=$subMenu->url;?>" title="<?php echo $subMenu->attr_title; ?>" <?php if ($subMenu->selected) echo 'class="active"'; ?>><span class="submeniuLeft">&raquo;</span><span class="submeniuRight"><?=$subMenu->title;?></span></a><div class="clear"></div></div>
<?php } ?>
<a id="download_brosura" target="_blank" href="/iqon-brosura-web.pdf"><img src="/wp-content/themes/iqon/images/download_pdf.png" /></a>
<div class="clear"></div>
</div>
<div class="contentright">
<?php } ?>
<h1><?php the_title();?></h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php if (!$am_submeniu && 1==0) { ?><h1><?php the_title();?></h1><?php } ?>
<?php the_content(); ?>
<?php endwhile; endif; ?>
<?php if ($am_submeniu) { ?>
</div>
<div class="clear"></div>
<?php } ?>
<?php get_footer(); ?>