blob: 0439bd577fc5065965b4668b2baeb2f6765b1eeb (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php
elgg_push_breadcrumb('First', "#");
elgg_push_breadcrumb('Second', "#");
elgg_push_breadcrumb('Third');
echo elgg_view('navigation/breadcrumbs', array('class' => mts));
elgg_pop_breadcrumb();
elgg_pop_breadcrumb();
elgg_pop_breadcrumb();
|