mirror of https://github.com/xfarrow/phpxpress.git
22 lines
614 B
PHP
22 lines
614 B
PHP
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="../bootstrap-5.1.3-dist/css/bootstrap.min.css">
|
|
<title>BreadCrumb example</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
include "../phpxpress/Breadcrumb.php";
|
|
|
|
$links["Github"] = "https://www.github.com";
|
|
$links["xfarrow"] = "https://www.github.com/xfarrow";
|
|
$links["PhpXpress"] = "https://www.github.com/xfarrow/phoxpress";
|
|
|
|
$breadcrumb = new PhpXpress\BreadCrumb;
|
|
|
|
$breadcrumb->setDataSource($links);
|
|
$breadcrumb->draw();
|
|
|
|
?>
|
|
</body>
|
|
</html>
|