Very slick looking theme. I encountered a minor problem while playing around with it.

On node pages, the link provided by the title was missing a slash. It would print out:

www.example.com/contentname-of-article

instead of

www.example.com/content/name-of-article

I seem to have gotten it working by adding a slash to the following line in the page.tpl.php after base_path() ,

if($is_front){
print $title

} else {
global $base_url; print $base_url . "/" . str_replace ( base_path() , "/", check_plain(request_uri()) ); " title=" print $title "> print $title

}

Comments

sockah’s picture

Woops, forgot to put the code in code tags.

 <?php if($is_front){ ?><h1 id="title"><?php print $title ?></h1><?php } else { ?><h1 id="title"><a href="<?php global $base_url; print $base_url . "/" . str_replace ( base_path() , "/", check_plain(request_uri()) ); ?>" title="<?php print $title ?>"><?php print $title ?></a></h1><?php } ?>
FiNeX’s picture

And what if you don't use "content/" substring in the path?

mike27’s picture

subscribing
i have the same problem... Anyone please?

FiNeX’s picture

Status: Active » Fixed

I've fixed the template. The fix will is in the 6.x-1.10 version.

FiNeX’s picture

Status: Fixed » Closed (fixed)