1
0

header.php 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html <?php language_attributes(); ?>>
  3. <head>
  4. <meta charset="<?php bloginfo( 'charset' ); ?>">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <meta http-equiv="x-ua-compatible" content="ie=edge">
  7. <title><?php wp_title(); ?></title>
  8. <link rel="profile" href="http://gmpg.org/xfn/11" />
  9. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  10. <?php wp_head(); ?>
  11. <link href='https://fonts.googleapis.com/css?family=Special+Elite' rel='stylesheet' type='text/css'>
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
  13. </head>
  14. <body>
  15. <div id="top"></div>
  16. <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  17. <ol class="carousel-indicators">
  18. <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
  19. <li data-target="#carousel-example-generic" data-slide-to="1"></li>
  20. <li data-target="#carousel-example-generic" data-slide-to="2"></li>
  21. </ol>
  22. <div class="carousel-inner" role="listbox">
  23. <div class="carousel-item active">
  24. <img src="https://ams.mmnx.de/wp-content/uploads/2016/09/TdAKuJ_2012_Slider01.jpg" alt="First slide">
  25. </div>
  26. <div class="carousel-item">
  27. <img src="https://ams.mmnx.de/wp-content/uploads/2016/09/lehrerfortbildung_a.jpg" alt="Second slide">
  28. </div>
  29. <div class="carousel-item">
  30. <img src="https://ams.mmnx.de/wp-content/uploads/2016/09/teaser.png" alt="Third slide">
  31. </div>
  32. </div>
  33. <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
  34. <span class="icon-prev" aria-hidden="true"><i class="fa fa-chevron-left" aria-hidden="true"></i></span>
  35. <span class="sr-only">Previous</span>
  36. </a>
  37. <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
  38. <span class="icon-next" aria-hidden="true"><i class="fa fa-chevron-right" aria-hidden="true"></i></span>
  39. <span class="sr-only">Next</span>
  40. </a>
  41. </div><!--/carousel-->
  42. <nav id="nav" class="navbar navbar-light bg-faded fixedsticky">
  43. <div class="container">
  44. <div class="clearfix">
  45. <button class="navbar-toggler pull-xs-right hidden-sm-up" type="button" data-toggle="collapse" data-target="#ams-topnav" aria-controls="bd-main-nav" aria-expanded="false" aria-label="Toggle navigation">
  46. </button>
  47. <a class="navbar-brand hidden-sm-up" href="/">
  48. <?php bloginfo('name'); ?>
  49. </a>
  50. </div>
  51. <?php
  52. wp_nav_menu( array(
  53. 'menu' => 'primary',
  54. 'theme_location' => 'primary',
  55. 'depth' => 2,
  56. 'container' => 'div',
  57. 'container_class' => 'collapse navbar-toggleable-xs',
  58. 'container_id' => 'ams-topnav',
  59. 'menu_class' => 'nav navbar-nav',
  60. 'fallback_cb' => 'wp_bootstrap_navwalker::fallback',
  61. 'walker' => new wp_bootstrap_navwalker())
  62. );
  63. ?>
  64. </div>
  65. </nav>