forked from freifunkeu/wordpress-theme-ffeu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
28 lines (28 loc) · 1.58 KB
/
header.php
File metadata and controls
28 lines (28 loc) · 1.58 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
<?php wp_head(); ?> <!DOCTYPE HTML>
<html>
<head><title>
<?php wp_title(' - ', true, 'right'); ?> <?php bloginfo('name'); ?>
</title><link href="https://fonts.googleapis.com/css?family=Open+Sans:400,800" rel="stylesheet" type="text/css" /><meta name="viewport" content="width = 1000" /><link href="<?php echo get_bloginfo('template_directory'); ?>/style.css" rel="stylesheet" type="text/css" /><link rel="icon" href="<?php echo get_bloginfo('template_directory'); ?>/images/favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="header">
<div class="wrapper">
<div id="logo">
<a href="/">
<img alt="freifunk Euskirchen" src="<?php echo get_bloginfo('template_directory'); ?>/images/logo.png" /></a>
</div>
<div id="freifunkhead">
<a href="/">
<h1>Freifunk Euskirchen</h1>
</a>
<ul class="links">
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</ul>
</div>
<div id="social">
<a href="https://www.twitter.com/freifunkeu" target="_blank">
<img alt="freifunk euskirchen auf twitter" src="<?php echo get_bloginfo('template_directory'); ?>/images/ic_twitter.png" /></a> <a href="https://www.facebook.com/freifunkeuskirchen" target="_blank">
<img alt="freifunk euskirchen auf facebook" src="<?php echo get_bloginfo('template_directory'); ?>/images/ic_facebook.png" /></a>
</div>
</div>
</div>