<!DOCTYPE html>
<html>
<head>
<title><?php echo get_bloginfo('name'); ?></title>
<link rel="nofollow" type="text/css" href=''template_directory'); ?>/css/bootstrap.css">
<link rel="nofollow" type="text/css" href=''template_directory'); ?>/css/style.css">
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/bootstrap.js"></script>
<meta name=description content="<?php echo get_bloginfo('description'); ?>">
<?php wp_head(); ?>
</head>
<body data-spy="scroll" data-target="#my-navbar" data-offset-top="25">
<!-- Parcours -->
<div class="container" id="parcours">
<section>
<?php
query_posts('pagename=parcours'); /* assign page id */
if (have_posts()) {
the_post();
the_content(); /* prints the content */
} else {
echo "La page 'parcours' n'existe pas !";
}
?>
</section>
</div>
<?php wp_footer(); ?>
</body>
</html>