From 69e49c133c7c1e7443e2bb7c2de3e1e8a3980cca Mon Sep 17 00:00:00 2001 From: Guillaume Mazoyer Date: Wed, 4 Jun 2014 12:16:36 +0200 Subject: Provide a way to not display the title. --- index.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'index.php') diff --git a/index.php b/index.php index d9ab19f..3bcf81c 100644 --- a/index.php +++ b/index.php @@ -91,7 +91,10 @@ final class LookingGlass { private function render_header() { print '
'; - print '

'.htmlentities($this->frontpage['title']).'


'; + if (!isset($this->frontpage['show_title']) || + $this->frontpage['show_title']) { + print '

'.htmlentities($this->frontpage['title']).'


'; + } if (isset($this->frontpage['image'])) { print 'logo'; } -- cgit v1.2.3