More Updates

This commit is contained in:
Willy Sudiarto Raharjo
2012-06-13 09:18:40 +07:00
parent a374abe8c1
commit 58aa0b492a
11 changed files with 4060 additions and 906 deletions
+6 -4
View File
@@ -1,10 +1,11 @@
<!-- Footer -->
<footer>
<?php
date_default_timezone_set("Asia/Jakarta");
echo "&copy; 2007-" . date("Y") . ". All right reserved.<br/>\n";
echo "<p>&copy; 2007-" . date("Y") . ". All right reserved.<br/>\n";
?>
Suggestions, critics, and comments can be sent to <a href="mailto:&#119;&#105;&#108;&#108;&#121;&#115;&#114;&#64;&#103;&#109;&#97;&#105;&#108;.&#99;&#111;&#109;" class="footer">Willy Sudiarto Raharjo</a><br/>
<a href="http://validator.w3.org/check?uri=referer" class="footer">Valid XHTML</a> | <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://lecturer.ukdw.ac.id/willysr" class="footer">Valid CSS</a>
Suggestions, critics, and comments can be sent to <a href="mailto:<?php echo EMAIL; ?>" class="footer">Willy Sudiarto Raharjo</a><br/>
<a href="http://validator.w3.org/check?uri=referer" class="footer">Valid HTML5</a> | <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://lecturer.ukdw.ac.id/willysr" class="footer">Valid CSS</a></p>
<script type="text/javascript">
var _gaq = _gaq || [];
@@ -17,4 +18,5 @@ Suggestions, critics, and comments can be sent to <a href="mailto:&#119;&#105;&#
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</script>
</footer>
+12 -1
View File
@@ -2,7 +2,18 @@
DEFINE("EMAIL", "&#119;&#105;&#108;&#108;&#121;&#115;&#114;&#64;&#116;&#105;.&#117;&#107;&#100;&#119;.&#97;&#99;.&#105;&#100;");
global $connection;
function showDate()
{
date_default_timezone_set("Asia/Jakarta");
$tgl=date("d");
if (substr($tgl,0,1)==0)
{
$tgl=substr($tgl,-1);
}
$bulan=date("F");
$tahun=date("Y");
echo "<strong>" . $tgl . " " . $bulan . " " . $tahun . "</strong>";
}
function showLastUpdate($filename)
+2 -11
View File
@@ -1,11 +1,2 @@
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="author" content="Willy Sudiarto Raharjo" />
<meta name="owner" content="Willy Sudiarto Raharjo" />
<meta name="classification" content="Personal, Lecturer, Education, UKDW, Duta Wacana" />
<meta name="category" content="Computers and Internet" />
<meta name="distribution" content="Global" />
<meta name="rating" content="General" />
<meta name="doc-type" content="Public" />
<meta name="doc-class" content="Published" />
<meta name="doc-rights" content="Public Domain" />
<meta name="language" content="English" />
<meta charset="UTF-8">
<meta name="author" content="Willy Sudiarto Raharjo" />
+6 -6
View File
@@ -1,9 +1,9 @@
<div id="nav">
<ul class="level1">
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="cv.php">CV</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="about.php">About</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="teaching.php">Teaching</a></li>
<li><a href="publications.php">Publications</a></li>
<li><a href="presentations.php">Presentations</a></li>
</ul>
</div>
</nav>