| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <!DOCTYPE html>
- <html <?php language_attributes(); ?>>
- <head>
- <meta charset="<?php bloginfo( 'charset' ); ?>">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title>
- <!-- Bootstrap -->
- <link href="<?php echo get_template_directory_uri(); ?>/css/bootstrap.min.css" rel="stylesheet">
- <link href="<?php echo get_template_directory_uri(); ?>/css/font-awesome.min.css" rel="stylesheet">
- <link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300,200' rel='stylesheet' type='text/css'>
- <link href="<?php echo get_template_directory_uri(); ?>/css/style.css" rel="stylesheet">
- <link rel="profile" href="http://gmpg.org/xfn/11" />
- <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
- <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
- <?php if ( is_singular() && get_option( 'thread_comments' ) ) wp_enqueue_script( 'comment-reply' ); ?>
- <?php wp_head(); ?>
- </head>
- <body>
- <div id="container" class="container clearfix">
- <header id="header" class="clearfix">
- <a href="<?php echo get_site_url(); ?>">
- <img src="http://yakidoo.de/wp-content/uploads/2015/05/YakidooLogo_standalone.png" alt="Yakidoo.de powered by GamingSwitch.de">
- </a>
- </header>
- <div id="nav" class="nav clearfix">
- <?php
- $defaults = array(
- 'theme_location' => 'header-menu',
- 'menu' => 'Header Menu',
- 'container' => '',
- 'container_class' => '',
- 'container_id' => '',
- 'menu_class' => 'menu list-inline',
- 'menu_id' => 'main-nav',
- 'echo' => true,
- 'fallback_cb' => 'wp_page_menu',
- 'before' => '',
- 'after' => '',
- 'link_before' => '',
- 'link_after' => '',
- 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
- 'depth' => 0,
- 'walker' => new Yakidoo_Walker()
- );
- wp_nav_menu( $defaults );
- ?>
- <div id="sub-menu" class="clearfix">
- <div id="breaking" class="pull-left">
- <span>Breaking <i class="fa fa-long-arrow-right"></i> </span>
- <ul>
- <li>
- <a href="#">Veltin ist nicht da</a>
- </li>
- <li style="display: none;">
- <a href="#">Veltin ist immer noch nicht da</a>
- </li>
- <li style="display: none;">
- <a href="#">alllrl</a>
- </li>
- </ul>
- </div>
- <div id="sub-menu-menu" class="pull-right">
- <?php
- $defaults = array(
- 'theme_location' => 'header-sub-menu',
- 'menu' => 'Header Sub-menu',
- 'container' => '',
- 'container_class' => '',
- 'container_id' => '',
- 'menu_class' => 'menu',
- 'menu_id' => 'main-sub-nav',
- 'echo' => true,
- 'fallback_cb' => 'wp_page_menu',
- 'before' => '',
- 'after' => '',
- 'link_before' => '',
- 'link_after' => '',
- 'items_wrap' => '<ul id="%1$s" class="%2$s">%3$s</ul>',
- 'depth' => 0,
- 'walker' => new Yakidoo_Walker()
- );
- wp_nav_menu( $defaults );
- ?>
- <!--<ul>
- <li>Über Uns</li>
- <li>Team</li>
- <li>Autor werden</li>
- <li>Kontakt</li>
- </ul>-->
- </div>
- </div>
- </div>
|