in my project I put some layout:
- _Layout, as main layout
- _Layout_Sales
- _Layout_Production
- _Layout_Project
where I put "Breadcrumb" above the main layout.
<div class="container body-content"><ul class="breadcrumb"><li><a href="#">Home</a></li></ul> @RenderBody() <hr /><footer><p>© 2017 - Dev_Prj</p></footer></div>
is that right to put "Breadcrumb" above main layout ? or it should be put on the child layout ?
And, how to change "Breadcrumb" when the child page or great child page change ?