relative php include path

This commit is contained in:
2015-06-26 17:15:26 +03:00
parent 2a584f3b86
commit e7aaacc5e6
8 changed files with 39 additions and 39 deletions

View File

@@ -3,14 +3,14 @@
<head> <head>
<title>Max Mehl | Error</title> <title>Max Mehl | Error</title>
<?php include '/static/head.de.html'; ?> <?php include 'static/head.de.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.de.html'; ?> <?php include 'static/nav.de.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
@@ -35,6 +35,6 @@
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | Über mich</title> <title>Max Mehl | Über mich</title>
<link lang="en" title="English" href="/en/about" hreflang="en" rel="alternate" type="text/html"> <link lang="en" title="English" href="/en/about" hreflang="en" rel="alternate" type="text/html">
<?php include '/static/head.de.html'; ?> <?php include 'static/head.de.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.de.html'; ?> <?php include 'static/nav.de.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/en/about"><?php include '/static/lang.de.html'; ?></a></p> <p><a href="/en/about"><?php include 'static/lang.de.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/about.de.html'; ?> <?php include 'text/about.de.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | About me</title> <title>Max Mehl | About me</title>
<link lang="en" title="Deutsch" href="/de/about" hreflang="de" rel="alternate" type="text/html"> <link lang="en" title="Deutsch" href="/de/about" hreflang="de" rel="alternate" type="text/html">
<?php include '/static/head.en.html'; ?> <?php include 'static/head.en.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.en.html'; ?> <?php include 'static/nav.en.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/de/about"><?php include '/static/lang.en.html'; ?></a></p> <p><a href="/de/about"><?php include 'static/lang.en.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/about.en.html'; ?> <?php include 'text/about.en.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | Kontakt</title> <title>Max Mehl | Kontakt</title>
<link lang="en" title="English" href="/en/contact" hreflang="en" rel="alternate" type="text/html"> <link lang="en" title="English" href="/en/contact" hreflang="en" rel="alternate" type="text/html">
<?php include '/static/head.de.html'; ?> <?php include 'static/head.de.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.de.html'; ?> <?php include 'static/nav.de.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/en/contact"><?php include '/static/lang.de.html'; ?></a></p> <p><a href="/en/contact"><?php include 'static/lang.de.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/contact.de.html'; ?> <?php include 'text/contact.de.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | Contact</title> <title>Max Mehl | Contact</title>
<link lang="en" title="Deutsch" href="/de/contact" hreflang="de" rel="alternate" type="text/html"> <link lang="en" title="Deutsch" href="/de/contact" hreflang="de" rel="alternate" type="text/html">
<?php include '/static/head.en.html'; ?> <?php include 'static/head.en.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.en.html'; ?> <?php include 'static/nav.en.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/de/contact"><?php include '/static/lang.en.html'; ?></a></p> <p><a href="/de/contact"><?php include 'static/lang.en.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/contact.en.html'; ?> <?php include 'text/contact.en.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl</title> <title>Max Mehl</title>
<link lang="en" title="Deutsch" href="/de" hreflang="de" rel="alternate" type="text/html"> <link lang="en" title="Deutsch" href="/de" hreflang="de" rel="alternate" type="text/html">
<?php include '/static/head.en.html'; ?> <?php include 'static/head.en.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.en.html'; ?> <?php include 'static/nav.en.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/de"><?php include '/static/lang.en.html'; ?></a></p> <p><a href="/de"><?php include 'static/lang.en.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,17 +28,17 @@
<!-- INDEX page --> <!-- INDEX page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big"> <div class="featured-box-big">
<?php include '/text/index-intro.en.html'; ?> <?php include 'text/index-intro.en.html'; ?>
</div> </div>
<br class="clear" /> <br class="clear" />
<!-- BIG BOXES --> <!-- BIG BOXES -->
<?php include '/text/index-box.en.html'; ?> <?php include 'text/index-box.en.html'; ?>
<!-- / BIG BOXES --> <!-- / BIG BOXES -->
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / INDEX page --> <!-- / INDEX page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | Links</title> <title>Max Mehl | Links</title>
<link lang="en" title="English" href="/en/links" hreflang="en" rel="alternate" type="text/html"> <link lang="en" title="English" href="/en/links" hreflang="en" rel="alternate" type="text/html">
<?php include '/static/head.de.html'; ?> <?php include 'static/head.de.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.de.html'; ?> <?php include 'static/nav.de.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/en/links"><?php include '/static/lang.de.html'; ?></a></p> <p><a href="/en/links"><?php include 'static/lang.de.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/links.de.html'; ?> <?php include 'text/links.de.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>

View File

@@ -4,18 +4,18 @@
<title>Max Mehl | Links</title> <title>Max Mehl | Links</title>
<link lang="en" title="Deutsch" href="/de/links" hreflang="de" rel="alternate" type="text/html"> <link lang="en" title="Deutsch" href="/de/links" hreflang="de" rel="alternate" type="text/html">
<?php include '/static/head.en.html'; ?> <?php include 'static/head.en.html'; ?>
</head> </head>
<body class="home blog custom-background"> <body class="home blog custom-background">
<div id="header"> <div id="header">
<div id="header-content"> <div id="header-content">
<?php include '/static/nav.en.html'; ?> <?php include 'static/nav.en.html'; ?>
<div class="info"> <div class="info">
<p><a target="_blank" href="/impressum">Impressum</a></p> <p><a target="_blank" href="/impressum">Impressum</a></p>
<p><a href="/de/links"><?php include '/static/lang.en.html'; ?></a></p> <p><a href="/de/links"><?php include 'static/lang.en.html'; ?></a></p>
</div> </div>
</div><!-- / header-content --> </div><!-- / header-content -->
</div><!-- / header --> </div><!-- / header -->
@@ -28,11 +28,11 @@
<!-- page --> <!-- page -->
<div id="featured-boxs"> <div id="featured-boxs">
<div class="featured-box-big textonly"> <div class="featured-box-big textonly">
<?php include '/text/contact.en.html'; ?> <?php include 'text/contact.en.html'; ?>
</div> </div>
</div> <!-- / featured-boxs --> </div> <!-- / featured-boxs -->
<!-- / page --> <!-- / page -->
<?php include '/static/piwik.html'; ?> <?php include 'static/piwik.html'; ?>
</body> </body>
</html> </html>