From 7af364eda9abaae692fec1cff62ae0658c053409 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 1 Jun 2012 22:16:31 +0200 Subject: [PATCH] Improved SEO. Customised title in pages other than home page --- jOOQ-website/frame.php | 8 +++++++- jOOQ-website/index.php | 1 + 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/jOOQ-website/frame.php b/jOOQ-website/frame.php index 56b9254030..b836c38348 100644 --- a/jOOQ-website/frame.php +++ b/jOOQ-website/frame.php @@ -5,7 +5,13 @@ - jOOQ is a fluent API for typesafe SQL query construction and execution + <?php + if (isset($home)) { + print "jOOQ is a fluent API for typesafe SQL query construction and execution"; + } else { + print getH1(); + } + ?> diff --git a/jOOQ-website/index.php b/jOOQ-website/index.php index 3749a3bc18..af9517ae89 100644 --- a/jOOQ-website/index.php +++ b/jOOQ-website/index.php @@ -1,4 +1,5 @@