More Updates
This commit is contained in:
+6
-4
@@ -1,10 +1,11 @@
|
||||
<!-- Footer -->
|
||||
<footer>
|
||||
<?php
|
||||
date_default_timezone_set("Asia/Jakarta");
|
||||
echo "© 2007-" . date("Y") . ". All right reserved.<br/>\n";
|
||||
echo "<p>© 2007-" . date("Y") . ". All right reserved.<br/>\n";
|
||||
?>
|
||||
Suggestions, critics, and comments can be sent to <a href="mailto:willysr@gmail.com" 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:wi&#
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
|
||||
</script>
|
||||
</script>
|
||||
</footer>
|
||||
+12
-1
@@ -2,7 +2,18 @@
|
||||
|
||||
DEFINE("EMAIL", "willysr@ti.ukdw.ac.id");
|
||||
|
||||
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
@@ -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" />
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user