Skip to content
Snippets Groups Projects
Select Git revision
  • master default protected
  • dev
2 results

header.php

Blame
  • header.php 3.59 KiB
    <!doctype html>
    <html lang="fr">
    	<head>
    		<meta charset="utf-8">
    		<title><?php echo page_title('Page non trouv&eacute;'); ?> - <?php echo site_name(); ?></title>
    
    		<meta name="description" content="<?php echo site_description(); ?>">
    		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
    
    		<link rel="stylesheet" href="<?php echo theme_url('/css/reset.css'); ?>">
    		<link rel="stylesheet" href="<?php echo theme_url('/css/style.css'); ?>">
    		<link rel="stylesheet" href="<?php echo theme_url('/css/small.css'); ?>" media="(max-width: 400px)">
    
    		<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo rss_url(); ?>">
    		<link rel="shortcut icon" href="<?php echo theme_url('img/favicon.png'); ?>">
    
    		<!--[if lt IE 9]>
    			<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    		<![endif]-->
    
    		<script>var base = '<?php echo theme_url(); ?>';</script>
    		<script src="<?php echo asset_url('/js/zepto.js'); ?>"></script>
    		<script src="<?php echo theme_url('/js/main.js'); ?>"></script>
    		    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
    		<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
    
    	    <meta name="viewport" content="width=device-width">
    	    <meta name="generator" content="Anchor CMS">
    
            <?php og_headers() ?>
    		<?php if(customised()): ?>
    		    <!-- Custom CSS -->
        		<style><?php echo article_css(); ?></style>
    
        		<!--  Custom Javascript -->
        		<script><?php echo article_js(); ?></script>
    		<?php endif; ?>
    	</head>
    	<body class="<?php echo body_class(); ?>">
    
    			<header id="top">
    
    				<nav class="navbar navbar-default navigation col-md-12" id="main"  >
    				  <div class="container-fluid">
    				    <!-- Brand and toggle get grouped for better mobile display -->
    				    <div class="navbar-header">
    				     
                            <a id="logo" Href="<?php echo base_url(); ?>">
                                <img style="height:150px;min-width:130px;" src="<?php echo theme_url('img/logo.svg'); ?>" alt="<?php echo site_name(); ?>">
                                <span><?php echo site_description(); ?></span>
                            </a>
    				    </div>
                        <div>
                           <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
    				        <span class="sr-only">Toggle navigation</span>
    				        <span class="icon-bar"></span>
    				        <span class="icon-bar"></span>
    				        <span class="icon-bar"></span>
    				      </button>
                        </div>
    					<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
    				      <ul class="nav navbar-nav">
    
                                <?php echo menu_tree();?>
    
                                <li>
    				                <form id="search" action="/search" method="post" class="navbar-form navbar-left">
    							    	<div class="form-group">
    						                <input type="search" id="term" name="term" class="form-control" placeholder="Rechercher&hellip;" value="">
    						                <input type="hidden" id="whatSearch" name="whatSearch" value="all" />
    							        </div>
    					            </form>
                                </li>
      	   					</ul>
    
    				    </div><!-- /.navbar-collapse -->
    				  </div><!-- /.container-fluid -->
    				</nav>
    
    
    
    			</header>