I need help setting titles for my pages on my website. Here is what my code consists of. I will use about page as an example. <?php include_once "./shared/ez_sql_core.php"; include_once "./mysql/ez_sql_mysql.php"; require_once("./config.php"); require 'h2o.php'; $template = "templates/about.htm"; $h2o = new h2o($template); echo $h2o->render(); Code (markup): This connects to my .htm file that starts off like this {% extends 'master_page.htm' %} {% block content %} Code (markup): Then is a couple div tags that contain the content. Now inside my master template page is this line, {% if title %} <title>{{ title }}</title> {% else %} <title>Funny, Cheesy & Dirty Pick Up Lines</title> {% endif %} Code (markup): So pretty much every page has the same title this is an issue for SEO and etc. I would like to add I tried just to add new title to the about.php that connects to the other files but it drops the whole pages div tag layout. I hope I described this well. Thanks!
When I add new title tags to my php page it moves the banner down and makes it so it doesn't align with the back ground. Here is example http://postimg.org/image/tq7s8j3qp/. My website is http://www.PickUpPanda.Com Thanks!