diff options
-rwxr-xr-x | blank/index.php | 2 | ||||
-rwxr-xr-x | bookmarks/index.php | 2 | ||||
-rwxr-xr-x | calculators/index.php | 2 | ||||
-rwxr-xr-x | computers/index.php | 2 | ||||
-rwxr-xr-x | guestbook/index.php | 2 | ||||
-rwxr-xr-x | guestbook/submit.php | 2 | ||||
-rw-r--r-- | inc/footer.php | 5 | ||||
-rw-r--r-- | inc/nav.php | 2 | ||||
-rwxr-xr-x | index.php | 2 | ||||
-rwxr-xr-x | pics/index.php | 2 | ||||
-rwxr-xr-x | projects/index.php | 2 |
11 files changed, 15 insertions, 10 deletions
diff --git a/blank/index.php b/blank/index.php index 137311f..3f2dfc0 100755 --- a/blank/index.php +++ b/blank/index.php @@ -22,7 +22,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/bookmarks/index.php b/bookmarks/index.php index 477098b..7bdb1ea 100755 --- a/bookmarks/index.php +++ b/bookmarks/index.php @@ -48,7 +48,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/calculators/index.php b/calculators/index.php index e7ca785..1a9a600 100755 --- a/calculators/index.php +++ b/calculators/index.php @@ -134,7 +134,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/computers/index.php b/computers/index.php index 7ffadc3..8620191 100755 --- a/computers/index.php +++ b/computers/index.php @@ -215,7 +215,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/guestbook/index.php b/guestbook/index.php index 9cf3fdb..21e5385 100755 --- a/guestbook/index.php +++ b/guestbook/index.php @@ -63,7 +63,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/guestbook/submit.php b/guestbook/submit.php index a2b04cf..ffaf4a6 100755 --- a/guestbook/submit.php +++ b/guestbook/submit.php @@ -49,7 +49,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/inc/footer.php b/inc/footer.php new file mode 100644 index 0000000..9d5e497 --- /dev/null +++ b/inc/footer.php @@ -0,0 +1,5 @@ +<hr> + <div style="text-align: center;"> + <a href="http://jigsaw.w3.org/css-validator/check/referer"><img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss-blue" alt="Valid CSS!"></a> <a href=""><img style="border:0;width:88px;height:31px" src="https://www.w3.org/Icons/valid-html401-blue" alt="Valid HTML 4.01!"></a><br> + Last Modified <span class="date"><?=date('Y-m-d H:i:s', filemtime($file) + 3600);?> GMT</span> + </div> diff --git a/inc/nav.php b/inc/nav.php index 293549b..bfc4c60 100644 --- a/inc/nav.php +++ b/inc/nav.php @@ -1,4 +1,4 @@ -<script lang="javascript" src="/res/js/themeswap.js"></script> +<script src="/res/js/themeswap.js"></script> <div class="header"> <nav> <div> @@ -61,7 +61,7 @@ </p> </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 11:39:56 AM CET</span> --> + <?php $file = __FILE__;require('./inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/pics/index.php b/pics/index.php index 7286a5f..baca07a 100755 --- a/pics/index.php +++ b/pics/index.php @@ -22,7 +22,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> diff --git a/projects/index.php b/projects/index.php index 4d671d5..cd58291 100755 --- a/projects/index.php +++ b/projects/index.php @@ -39,7 +39,7 @@ </div> <!-- content --> <div id="footer" class="pagefooter"> - <!-- Created <span class="date">Sat 26 Mar 2011 03:11:41 PM CET</span> --> + <?php $file = __FILE__;require('../inc/footer.php'); ?> </div> <!-- footer --> </div> <!-- pagebody --> </div> <!-- page --> |