diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-13 16:16:15 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-06-13 16:16:15 +0200 |
commit | 6f3b61ae16cc04c4b4f036a795842ef81d210635 (patch) | |
tree | acc35d41b4966536873d89baed8d892eb65d35cc | |
parent | 5732c05c1d61cc6ad404af86527aa5d74190b7ff (diff) |
Make header clickable.
-rw-r--r-- | index.php | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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() { |