Topic: [?]breadcrumbs for pages
Trying to make breadcrumbs for pages and it does not look good enough.
How can i make this work without writing "home" in breadcrumbs.view.php
code:
<?php if ($parent) { ?> <li><a href="<?php echo Site::url(); ?>">Home</a></li> <li><a href="<?php echo Site::url().$page['parent']; ?>"><?php echo $parent_page['title']; ?></a></li> <li class="active"><?php echo $page['title']; ?></li> <?php } else { ?> <li><a href="<?php echo Site::url(); ?>">Home</a></li> <li class="active"><?php echo $page['title']; ?></li> <?php }
want to make it look like this:
Home > About us
deeper
Home > About us > Our story
---------- cause ------
it does not look nice if i keep original
About us
deeper
About us > Our story
So my question is: How can change "Home" to something wht will show it there? cause if site in russian u have to change it in breadcrumbs.view.php
So far So good