From e59ac01c742610629db77e11f2321ac0f954b400 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Wed, 10 Jun 2020 10:56:05 +0300 Subject: [PATCH 1/2] Create Breadcrumbs.md --- .../UI/AspNetCore/Tag-Helpers/Breadcrumbs.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md b/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md new file mode 100644 index 0000000000..2ba46dc524 --- /dev/null +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md @@ -0,0 +1,25 @@ +# Breadcrumbs + +## Introduction + +`abp-breadcrumb` is the main container for breadcrumb items. + +Basic usage: + +````csharp + + + + + +```` + +## Demo + +See the [breadcrumbs demo page](https://bootstrap-taghelpers.abp.io/Components/Breadcrumbs) to see it in action. + +## abp-breadcrumb-item Attributes + +- **title**: Sets the text of the breadcrumb item. +- **active**: Sets the active breadcrumb item. +- **href**: A value indicates if an `abp-breadcrumb-item` has a link. Should be a string link value. \ No newline at end of file From ea246be0b04248c34ae84db29f7f3def49b73b1c Mon Sep 17 00:00:00 2001 From: Yunus Emre Kalkan Date: Wed, 10 Jun 2020 11:10:15 +0300 Subject: [PATCH 2/2] Update Breadcrumbs.md --- docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md b/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md index 2ba46dc524..59332cf8de 100644 --- a/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Breadcrumbs.md @@ -21,5 +21,5 @@ See the [breadcrumbs demo page](https://bootstrap-taghelpers.abp.io/Components/B ## abp-breadcrumb-item Attributes - **title**: Sets the text of the breadcrumb item. -- **active**: Sets the active breadcrumb item. -- **href**: A value indicates if an `abp-breadcrumb-item` has a link. Should be a string link value. \ No newline at end of file +- **active**: Sets the active breadcrumb item. Last item is active by default, if no other item is active. +- **href**: A value indicates if an `abp-breadcrumb-item` has a link. Should be a string link value.