move includes
This commit is contained in:
parent
170985b8f3
commit
ffb934447c
6 changed files with 9 additions and 9 deletions
|
@ -43,9 +43,9 @@ if ($time > 0) {
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("top.php"); ?>
|
||||
<?php include("inc/top.php"); ?>
|
||||
<div class="container">
|
||||
<?php include("header.php"); ?>
|
||||
<?php include("inc/header.php"); ?>
|
||||
<div class="section">
|
||||
<h2>Introduction</h2>
|
||||
<p>hello im yuki and welcome to my super epic webpage</p>
|
||||
|
@ -96,7 +96,7 @@ foreach ($posts as $idx => $post) {
|
|||
<?php } ?>
|
||||
</div>
|
||||
*/ ?>
|
||||
<?php include("footer.php"); ?>
|
||||
<?php include("inc/footer.php"); ?>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
|
|
@ -11,9 +11,9 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("top.php"); ?>
|
||||
<?php include("inc/top.php"); ?>
|
||||
<div class="container">
|
||||
<?php include("header.php"); ?>
|
||||
<?php include("inc/header.php"); ?>
|
||||
<div class="section">
|
||||
<h2>Links</h2>
|
||||
<ul>
|
||||
|
@ -22,7 +22,7 @@
|
|||
<?php } ?>
|
||||
</ul>
|
||||
</div>
|
||||
<?php include("footer.php"); ?>
|
||||
<?php include("inc/footer.php"); ?>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
|
|
@ -62,9 +62,9 @@ $tbl = array(
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<?php include("top.php"); ?>
|
||||
<?php include("inc/top.php"); ?>
|
||||
<div class="container">
|
||||
<?php include("header.php"); ?>
|
||||
<?php include("inc/header.php"); ?>
|
||||
<?php foreach($words as $type => $items) { ?>
|
||||
<div class="section">
|
||||
<h2><?=$type?></h2>
|
||||
|
@ -75,7 +75,7 @@ $tbl = array(
|
|||
</ul>
|
||||
</div>
|
||||
<?php } ?>
|
||||
<?php include("footer.php"); ?>
|
||||
<?php include("inc/footer.php"); ?>
|
||||
</div>
|
||||
<script defer src="js/script.js"></script>
|
||||
</body>
|
||||
|
|
Loading…
Reference in a new issue