-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·112 lines (65 loc) · 2.78 KB
/
header.php
File metadata and controls
executable file
·112 lines (65 loc) · 2.78 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
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=1, user-scalable=no" name="viewport" />
<link type="text/css" rel="stylesheet" href="<?php echo(get_template_directory_uri()); ?>/style.css"></link>
<link type="text/css" rel="stylesheet" href="<?php echo(get_template_directory_uri()); ?>/css/layout.css"></link>
<link type="text/css" rel="stylesheet" href="<?php echo(get_template_directory_uri()); ?>/css/sponsor.css"></link>
<link type="text/css" rel="stylesheet" href="<?php echo(get_template_directory_uri()); ?>/css/quizlayout.css"></link>
<link rel="stylesheet" type="text/css" href="<?php echo(get_template_directory_uri()); ?>/PlugIns/mfglabs-iconset-master/css/mfglabs_iconset.css">
<link type="text/css" rel="stylesheet" href="<?php echo(get_template_directory_uri()); ?>/css/menu.css"></link>
<title><?php
wp_title();
if ( is_front_page() == false){
echo " - ";
}
bloginfo('name');
?></title>
<?php
//if(wp_title()) {print("hallo");}
?>
<!-- For Ping -->
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php wp_head(); ?>
<meta name="author" content="<?php the_author() ?>" />
<?php if ( !is_user_logged_in() ) /* Nur laden wenn User nicht eingeloggt ist. */ { ?>
<!-- Google Tag Manager -->
<!-- Code to be includet...
<!-- End Google Tag Manager -->
<?php } ;?>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/r29/html5.js"></script>
<![endif]-->
<script type="text/javascript">
//CSS Menü auch auf Touchdevices bedienbar machen
$(document).ready( function(){
$('#menuebutton').click( function(event){
event.stopPropagation();
$('#menu-top-menue').toggle();
});
});
</script>
</head>
<body>
<script type="text/javascript" src="<?php echo(get_template_directory_uri()); ?>/PlugIns/flexnav-master/js/jquery.flexnav.min.js"></script>
<div id="header">
<div id="branding">
<a href="<?php bloginfo('url'); ?>">
<a id="PageTitle" href="<?php bloginfo('url'); ?>">
<?php bloginfo('name') ?>
</a>
</a>
<h2 id="SubHeadline"><?php echo(bloginfo('description')); ?></h2>
<nav id="headernav">
<ul id="menueelemente">
<div id="menuebutton"><a href="#"><i class="icon-reorder"></i></a></div>
<?php wp_nav_menu(array('theme_location' => 'header-menu')); ?>
</ul>
</nav>
</div>
</div>
<div class="parallaxScrolling">
<div id="colortransition"></div>
</div>