forked from satanas/wp-turpial-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·81 lines (76 loc) · 3.74 KB
/
header.php
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
<meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<?if (is_page('Home') || is_page('Features')): ?>
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/nivo-slider.css" type="text/css" media="screen" />
<?php endif ?>
<?if (is_page('Gallery')) : ?>
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/lytebox.css" type="text/css" media="screen" />
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/gallery.css" type="text/css" media="screen" />
<?php endif ?>
<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'); ?>" />
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/images/favicon.ico" />
<?php wp_enqueue_script("jquery"); ?>
<?php get_nivoslider_script(); ?>
<?php get_lytebox_script(); ?>
<?php wp_head(); ?>
<script type="text/javascript">
var disqus_developer = 1; // this would set it to developer mode
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-4851218-2']);
_gaq.push(['_setDomainName', 'turpial.org.ve']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript">
/* <![CDATA[ */
(function() {
var s = document.createElement('script'), t = document.getElementsByTagName('script')[0];
s.type = 'text/javascript';
s.async = true;
s.src = 'http://api.flattr.com/js/0.6/load.js?mode=auto';
t.parentNode.insertBefore(s, t);
})();
/* ]]> */
</script>
</head>
<body>
<div id="wrapper">
<div id="logo-contact-icons">
<a id="logo" href="<?php bloginfo('url'); ?>"></a>
<div id="contact-icons">
<a class="FlattrButton" style="display:none;" href="http://turpial.org.ve"></a>
<noscript>
<a href="http://flattr.com/thing/452623/Turpial-Website" target="_blank">
<img src="http://api.flattr.com/button/flattr-badge-large.png" alt="Flattr this" title="Flattr this" border="0" /></a>
</noscript>
<a id="paypal-donate" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XUNXXJURA7FLW"><img src="https://www.paypal.com/en_US/i/btn/x-click-but04.gif" alt="" /></a>
<a id="rss-icon" href="http://turpial.org.ve/feed/" title="Feed RSS"></a>
<a id="twitter-icon" href="http://twitter.com/turpialve" title="@turpialve"></a>
<div class="clearbox"></div>
</div>
</div>
<div class="shadow">
<div id="header">
<div id="menu">
<ul>
<li><a href="<?php bloginfo('url'); ?>">Home</a></li>
<?php wp_list_pages('title_li=&depth=1'); ?>
<li><a href="http://dev.turpial.org.ve">Development</a></li>
</ul>
</div>
</div>