-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
110 lines (93 loc) · 3.76 KB
/
header.php
File metadata and controls
110 lines (93 loc) · 3.76 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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( '|', true, 'right' );
// Add the blog name.
bloginfo( 'name' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php
/* We add some JavaScript to pages with the comment form
* to support sites with threaded comments (when in use).
*/
if ( is_singular() && get_option( 'thread_comments' ) )
wp_enqueue_script( 'comment-reply' ); ?>
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory') ?>/reset.css">
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory') ?>/960.css">
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory') ?>/style.css" />
<script src="http://schr.fr/wp-content/themes/twentyten/jquery.min.js"></script>
<script src="http://schr.fr/wp-content/themes/twentyten/jquery.placeheld.min.js"></script>
<script>
$(document).ready(function(){
twee = '.revjirhcscire@cire||ln';
tweetjes = twee.split("||");
var reverse = function (s) {
var ret ='';
for (var i=s.length-1;i>=0;i--)
ret+=s.charAt(i);
return ret;
}
twee = reverse(tweetjes[0])+reverse(tweetjes[1]);
$('#dam').attr('href', 'mailto:' + twee)
$("input[placeholder]").placeHeld();
/* The homepage consists of excerpts from posts on graphical
works. The full post can be found by clicking the more...
button.
The most visually appealing part of the homepage are the
images that show up for each post. They are clickable.
However, they lead to a view showing the image more close
up. Whereas our intention is to have the readers go to
to the view with the full post.
So we have to change these links.
*/
$("body.home .post").each(function() {
// establish the link to the post
var url = $(this).find(".entry-title a").attr('href');
// find the image
var img = $(this).find("img").first();
// Change the hyperlink of the link wrapping the image
// i.e. http://schr.fr/?attachment_id=78 -> http://schr.fr/radio-panik
img.parent("a").attr('href', url);
});
});
</script>
<?php
/* Always have wp_head() just before the closing </head>
* tag of your theme, or you will break many plugins, which
* generally use this hook to add elements to <head> such
* as styles, scripts, and meta tags.
*/
wp_head();
?>
</head>
<body <?php body_class(); ?>>
<div style="position:absolute; right:20px; top: 20px;"><a href="http://ericschrijver.nl">ericschrijver.nl</a></div>
<div id="header" class="container_12">
<div class="grid_8 ">
</div>
</div>