All Projects → VahidN → DNTBreadCrumb.Core

VahidN / DNTBreadCrumb.Core

Licence: Apache-2.0 license
DNTBreadCrumb.Core Creates custom bread crumb definitions, based on Twitter Bootstrap 3.x features for ASP.NET Core applications.

Programming Languages

C#
18002 projects
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to DNTBreadCrumb.Core

KissLog.Sdk
KissLog is a lightweight and highly customizable logging framework for .NET applications
Stars: ✭ 33 (+3.13%)
Mutual labels:  aspnetcore
webpack-aspnetcore
🚀 Make Webpack and ASP.NET Core friends easy way
Stars: ✭ 28 (-12.5%)
Mutual labels:  aspnetcore
Huxley2
A cross-platform JSON proxy for the GB railway Live Departure Boards SOAP API
Stars: ✭ 22 (-31.25%)
Mutual labels:  aspnetcore
ApiFramework
Everything is an (Open)API
Stars: ✭ 26 (-18.75%)
Mutual labels:  aspnetcore
run-aspnetcore-blazor
New .Net Core 3.0 Asp.Net Blazor Components SPA Web Application
Stars: ✭ 22 (-31.25%)
Mutual labels:  aspnetcore
spid-aspnetcore
AspNetCore Remote Authenticator for SPID
Stars: ✭ 28 (-12.5%)
Mutual labels:  aspnetcore
aspdotnet-core-fundamentals
Persian notes for ASP.NET Core Fundamentals course (Pluralsight)
Stars: ✭ 25 (-21.87%)
Mutual labels:  aspnetcore
JwtAuthDemo
ASP.NET Core + Angular JWT auth demo; integration tests; login, logout, refresh token, impersonation, authentication, authorization; run on Docker Compose.
Stars: ✭ 278 (+768.75%)
Mutual labels:  aspnetcore
Ext.NET
Ext.NET public Issues.
Stars: ✭ 28 (-12.5%)
Mutual labels:  aspnetcore
joplin-note-tabs
Allows to open several notes at once in tabs and pin them.
Stars: ✭ 150 (+368.75%)
Mutual labels:  breadcrumbs
http-exceptions
Return exceptions over HTTP e.g. as ASP.NET Core Problem Details, and HTTP-specific exception classes that enable ASP.NET to generate exception information
Stars: ✭ 42 (+31.25%)
Mutual labels:  aspnetcore
dotNetify-react-native-demo
DotNetify + React Native + .NET Core demo
Stars: ✭ 43 (+34.38%)
Mutual labels:  aspnetcore
FireflySoft.RateLimit
It is a rate limiting library based on .Net standard.
Stars: ✭ 76 (+137.5%)
Mutual labels:  aspnetcore
MiCake
🍰一款基于.Net Core平台的“超轻柔“领域驱动设计(DDD)组件
Stars: ✭ 112 (+250%)
Mutual labels:  aspnetcore
mssql-restapi
A simple REST API for SQL Server, Azure SQL DB and Azure SQL DW using SMO on .NET Core 2.0
Stars: ✭ 33 (+3.13%)
Mutual labels:  aspnetcore
smart-blazor
Blazor UI Components & Examples
Stars: ✭ 32 (+0%)
Mutual labels:  aspnetcore
use-react-router-breadcrumbs
tiny, flexible, hook for rendering route breadcrumbs with react-router v6
Stars: ✭ 170 (+431.25%)
Mutual labels:  breadcrumbs
aspnet-core-3-basic-authentication-api
ASP.NET Core 3.1 - Basic HTTP Authentication API
Stars: ✭ 70 (+118.75%)
Mutual labels:  aspnetcore
ef-db-diagrams
Visualize model created with EntityFramework Core
Stars: ✭ 52 (+62.5%)
Mutual labels:  aspnetcore
ZeroToHeroDaprCon
Demos from my Zero to Hero with Dapr session @ DaprCon
Stars: ✭ 36 (+12.5%)
Mutual labels:  aspnetcore

DNTBreadCrumb.Core

GitHub Actions status

DNTBreadCrumb.Core Creates custom bread crumb definitions, based on Twitter Bootstrap 3.x and 4.x features for ASP.NET Core applications.

Install via NuGet

To install DNTBreadCrumb.Core, run the following command in the Package Manager Console:

PM> Install-Package DNTBreadCrumb.Core

You can also view the package page on NuGet.

Usage:

  • After installing the DNTBreadCrumb.Core package, add the following definition to the _ViewImports.cshtml file:
@addTagHelper *, DNTBreadCrumb.Core
 <breadcrumb asp-homepage-title="Home"
             asp-homepage-url="@Url.Action("Index", "Home", values: new { area = "" })"
             asp-bootstrap-version="V3"
             asp-homepage-glyphicon="glyphicon glyphicon-home"></breadcrumb>
  • Now you can add the BreadCrumb attributes to your controller or action methods:
[BreadCrumb(Title = "Home", UseDefaultRouteUrl = true, Order = 0, IgnoreAjaxRequests = true)]
public class HomeController : Controller
{
   [BreadCrumb(Title = "Main index", Order = 1, IgnoreAjaxRequests = true)]
   public ActionResult Index()
   {
      return View();
   }

Please follow the TestWebApp, TestWebApp.WithFeatureFolders and TestWebApp.WithRazorPages samples for more scenarios.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].