New features
This commit is contained in:
parent
678eb853d7
commit
1c4962c570
|
@ -130,7 +130,7 @@ class Page extends fileContent
|
||||||
return $url.'/'.$tmp;
|
return $url.'/'.$tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $htmlPath.'/'.$tmp;
|
return '/'.$htmlPath.'/'.$tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function parentKey()
|
public function parentKey()
|
||||||
|
|
|
@ -120,7 +120,7 @@ class Post extends fileContent
|
||||||
return $url.'/'.$tmp;
|
return $url.'/'.$tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $htmlPath.'/'.$tmp;
|
return '/'.$htmlPath.'/'.$tmp;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -18,7 +18,7 @@ $parents = $pagesParents[NO_PARENT_CHAR];
|
||||||
foreach($parents as $parent)
|
foreach($parents as $parent)
|
||||||
{
|
{
|
||||||
// Print the parent
|
// Print the parent
|
||||||
echo '<a class="parent" href="'.HTML_PATH_ROOT.$parent->key().'">'.$parent->title().'</a>';
|
echo '<a class="parent" href="'.$parent->permalink().'">'.$parent->title().'</a>';
|
||||||
|
|
||||||
// Check if the parent hash children
|
// Check if the parent hash children
|
||||||
if(isset($pagesParents[$parent->key()]))
|
if(isset($pagesParents[$parent->key()]))
|
||||||
|
@ -29,7 +29,7 @@ foreach($parents as $parent)
|
||||||
echo '<ul>';
|
echo '<ul>';
|
||||||
foreach($children as $child)
|
foreach($children as $child)
|
||||||
{
|
{
|
||||||
echo '<li><a class="children" href="'.HTML_PATH_ROOT.$child->key().'">— '.$child->title().'</a></li>';
|
echo '<li><a class="children" href="'.$child->permalink().'">— '.$child->title().'</a></li>';
|
||||||
}
|
}
|
||||||
echo '</ul>';
|
echo '</ul>';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue