Merge 16aae77ab41dbaa7c5f2171cf61ccacadad2a35d into 172b1fde250d35f7680cf1c02c6bcab7091c7292

This commit is contained in:
Frédéric K 2015-09-18 04:54:48 +00:00
commit d283130f72

View File

@ -3,7 +3,7 @@
<head> <head>
<!-- Meta tags --> <!-- Meta tags -->
<?php include('php/head.php') ?> <?php include(dirname(__FILE__).'/php/head.php') ?>
</head> </head>
<body> <body>
@ -16,7 +16,7 @@
<!-- Sidebar --> <!-- Sidebar -->
<div class="sidebar pure-u-1 pure-u-md-1-4"> <div class="sidebar pure-u-1 pure-u-md-1-4">
<?php include('php/sidebar.php') ?> <?php include(dirname(__FILE__).'/php/sidebar.php') ?>
</div> </div>
<!-- Main --> <!-- Main -->
@ -26,15 +26,15 @@
<?php <?php
if( ($Url->whereAmI()=='home') || ($Url->whereAmI()=='tag') ) if( ($Url->whereAmI()=='home') || ($Url->whereAmI()=='tag') )
{ {
include('php/home.php'); include(dirname(__FILE__).'/php/home.php');
} }
elseif($Url->whereAmI()=='post') elseif($Url->whereAmI()=='post')
{ {
include('php/post.php'); include(dirname(__FILE__).'/php/post.php');
} }
elseif($Url->whereAmI()=='page') elseif($Url->whereAmI()=='page')
{ {
include('php/page.php'); include(dirname(__FILE__).'/php/page.php');
} }
?> ?>