I've used below code in masterpage to generate breadcrumbs.
<SharePoint:AjaxDelta ID="deltabreadcrumbnav" runat="server"><div id="breadcrumbnavigation"><span class="breadcrumb-nav"><asp:ContentPlaceHolder ID="ContentPlaceHolder" runat="server" ><asp:SiteMapPath SiteMapProvider="SPContentMapProvider" id="ContentMap" SkipLinkText="" runat="server"/></asp:ContentPlaceHolder></span></div></SharePoint:AjaxDelta>
But if I create a page in pages library and browse to that page, the breadcrumb comes as Home-> Pages -> About . Where about is the page I created. I want the breadcrumb to display it as Home->About.
What are the options I have to do so? I understand that through jquery it is possible to find and delete Pages but I dont want to do that.