summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Mazoyer <respawneral@gmail.com>2014-06-13 16:16:15 +0200
committerGuillaume Mazoyer <respawneral@gmail.com>2014-06-13 16:16:15 +0200
commit6f3b61ae16cc04c4b4f036a795842ef81d210635 (patch)
treeacc35d41b4966536873d89baed8d892eb65d35cc
parent5732c05c1d61cc6ad404af86527aa5d74190b7ff (diff)
Make header clickable.
-rw-r--r--index.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/index.php b/index.php
index 75af1d5..44c59d3 100644
--- a/index.php
+++ b/index.php
@@ -90,6 +90,7 @@ final class LookingGlass {
}
private function render_header() {
+ print '<a href="." title="Home">';
print '<div class="header_bar">';
if (!isset($this->frontpage['show_title']) ||
$this->frontpage['show_title']) {
@@ -99,6 +100,7 @@ final class LookingGlass {
print '<img src="'.$this->frontpage['image'].'" alt="logo" />';
}
print '</div>';
+ print '</a>';
}
private function render_content() {