HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/8.2.20
System: Linux 825a8fd6cf8c 3.10.0-1160.95.1.el7.x86_64 #1 SMP Mon Jul 24 13:59:37 UTC 2023 x86_64
User: apache (48)
PHP: 8.2.20
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/themes/thematic/thematicsamplechildtheme/header.php
<?php
/**
 * @package WordPress
 * @subpackage myroPCB_Theme
 */
$theme_path = get_template_directory_uri()."/";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>

<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />

<title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>

<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<style type="text/css" media="screen">

<?php
// Checks to see whether it needs a sidebar or not
if ( empty($withcomments) && !is_single() ) {
?>
	#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbg-<?php bloginfo('text_direction'); ?>.jpg") repeat-y top; border: none; }
<?php } else { // No sidebar ?>
	#page { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/kubrickbgwide.jpg") repeat-y top; border: none; }
<?php } ?>

</style>

<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>

<?php wp_head(); ?>

<link href="style.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory')?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory')?>/js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory')?>/js/jquery.scrollShow.js"></script>
<script language="javascript" src="<?php bloginfo('stylesheet_directory')?>/js/easySlider.js"></script>
<script type="text/javascript">
		$(document).ready(function(){	
			$("#index_head").easySlider({
				auto:true,
				prevText: 		'',
				nextText: 		'',
				continuous: true
				 	
			});
		});	
</script>
<script type="text/javascript">
jQuery(function( $ ){
	//borrowed from jQuery easing plugin
	//http://gsgd.co.uk/sandbox/jquery.easing.php
	$.easing.backout = function(x, t, b, c, d) {
		var s=1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	};
	$('#screen').scrollShow({
		view:'#view',
		content:'#images',
		easing:'backout',
		wrappers:'crop',
		navigators:'a[id]',
		navigationMode:'s',
		circular:true,
		start:0
	});
});
</script>
</head>
<body>
<div class="main">
	<div class="logo"> 
		<div class="add">
			<p>
				Tel: (888)PCB-MYRO(722-6976)<br />
  			Email : sales@myropcb.com
  		</p>
  	</div>
		<p><img src="<?php bloginfo('stylesheet_directory'); ?>/images/arror.gif" />&nbsp;&nbsp;<a href="#">Login</a>  |  <a href="#">Register</a></p>
	</div>
</div>

<div class="body_bottom">
	<div class="menu">
		<ul>
			<li><a href="<?php echo get_option('home'); ?>"><span><?php _e("Home", 'studiopress'); ?></span></a></li>
    	<? 
    		$pages = get_pages('sort_column=post_date&exclude=2'); 
    		foreach($pages as $page){
    			echo "<li><a href='".get_page_link($page->ID)."'><span>".$page->post_title."</span></a></li>";
    		}
    	?>
  	</ul>
	</div>
</div>