-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
51 lines (48 loc) · 1.74 KB
/
header.php
File metadata and controls
51 lines (48 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="language" content="es" />
<title>
<?php bloginfo('name'); ?>
<?php wp_title(); ?>
</title>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url'); ?> );
</style>
<!--link href="style.css" rel="stylesheet" type="text/css"-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$('.content').css('height', $('.column2').height() + 'px');
});
</script>
</head>
<body>
<div class="container">
<header>
<a href="<?php echo get_settings('home'); ?>"><?php bloginfo('name'); ?></a>
</header>
<nav>
<ul>
<?php if ( is_home() ) : ?>
<li class="page_item current_page_item"><a href="<?php echo get_settings('home');?>">Inicio</a></li>
<?php else : ?>
<li class="page_item"><a href="<?php echo get_settings('home');?>">Inicio</a></li>
<?php endif; ?>
<?php wp_list_pages('title_li='); ?>
</ul>
<div id="search">
<form id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>" method="get">
<input type="text" name="s" id="s" />
</form>
</div>
</nav>