From d8b398ad91ecdbb8dbf439bcbb3abc3a23cd5f6e Mon Sep 17 00:00:00 2001 From: Gabriel Dunne Date: Fri, 9 Jul 2010 18:12:59 -0700 Subject: [PATCH] templates have titles --- templates/default.html.tpl | 2 +- templates/default.txt.tpl | 2 +- templates/page.html.tpl | 2 +- templates/single.html.tpl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/default.html.tpl b/templates/default.html.tpl index f41a3de..f5f9572 100644 --- a/templates/default.html.tpl +++ b/templates/default.html.tpl @@ -3,7 +3,7 @@ include_template('head-inc.html.tpl') ?> - <?=SITE_TITLE?><?=$this->title();?> + <?=SITE_TITLE?>, <?=$page_title?> diff --git a/templates/default.txt.tpl b/templates/default.txt.tpl index bfef63c..eac9fb2 100644 --- a/templates/default.txt.tpl +++ b/templates/default.txt.tpl @@ -1,4 +1,4 @@ -title : title()."\n"; ?> +title : , author : gabriel dunne email : gdunne at quilime dot com copyright : 1997 - diff --git a/templates/page.html.tpl b/templates/page.html.tpl index 346fdef..295ad02 100644 --- a/templates/page.html.tpl +++ b/templates/page.html.tpl @@ -3,7 +3,7 @@ include_template('head-inc.html.tpl') ?> - <?=SITE_TITLE?><?=$this->title();?> + <?=SITE_TITLE?>, <?=$data['title']?> diff --git a/templates/single.html.tpl b/templates/single.html.tpl index ccb8623..e169285 100644 --- a/templates/single.html.tpl +++ b/templates/single.html.tpl @@ -3,7 +3,7 @@ include_template('head-inc.html.tpl') ?> - <?=SITE_TITLE?><?=$this->title(); ?> + <?=SITE_TITLE?>, <?=$data['title'];?> -- 2.34.1