Open Source Web Application Framework for ASP.NET Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
925 B

@page
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.BreadcrumbsModel
@{
ViewData["Title"] = "Breadcrumbs";
}
<h2>Breadcrumbs</h2>
<p>Based on <a href="https://getbootstrap.com/docs/4.1/components/breadcrumbs/" target="_blank"> Bootstrap Breadcrumb</a>.</p>
<h4># Breadcrumb Examples</h4>
<div class="demo-with-code">
<div class="demo-area">
<abp-breadcrumb>
<abp-breadcrumb-item href="#" title="Home"/>
<abp-breadcrumb-item href="#" title="Library"/>
<abp-breadcrumb-item title="Page"/>
</abp-breadcrumb>
</div>
<div class="code-area">
<pre>
&lt;abp-breadcrumb&gt;
&lt;abp-breadcrumb-item href=&quot;#&quot; title=&quot;Home&quot;/&gt;
&lt;abp-breadcrumb-item href=&quot;#&quot; title=&quot;Library&quot;/&gt;
&lt;abp-breadcrumb-item title=&quot;Page&quot;/&gt;
&lt;/abp-breadcrumb&gt;
</pre>
</div>
</div>