mirror of https://github.com/abpframework/abp
				
				
				
			
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							35 lines
						
					
					
						
							1.2 KiB
						
					
					
				
			
		
		
	
	
							35 lines
						
					
					
						
							1.2 KiB
						
					
					
				| @page
 | |
| @model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.NavsModel
 | |
| @{
 | |
|     ViewData["Title"] = "Navs";
 | |
| }
 | |
| 
 | |
| <h2>Navs</h2>
 | |
| 
 | |
| <p>Based on <a href="https://getbootstrap.com/docs/4.1/components/navs/" target="_blank"> Bootstrap Navs</a>.</p>
 | |
| 
 | |
| <h4># Navs Examples</h4>
 | |
| 
 | |
| <div class="demo-with-code">
 | |
|     <div class="demo-area">
 | |
| 
 | |
|         <abp-nav  nav-style="Pill" responsive="true" align="Center">
 | |
|             <abp-nav-item href="#">Active</abp-nav-item>
 | |
|             <abp-nav-item href="#">Longer nav link</abp-nav-item>
 | |
|             <abp-nav-item href="#">Link</abp-nav-item>
 | |
|             <abp-nav-item href="#" disabled="true">Disabled</abp-nav-item>
 | |
|         </abp-nav>
 | |
| 
 | |
|     </div>
 | |
|     <div class="code-area">
 | |
|         <pre>
 | |
| <abp-nav  nav-style="Pill" responsive="true" align="Center">
 | |
|      <abp-nav-item href="#">Active</abp-nav-item>
 | |
|      <abp-nav-item href="#">Longer nav link</abp-nav-item>
 | |
|      <abp-nav-item href="#">Link</abp-nav-item>
 | |
|      <abp-nav-item href="#" disabled="true">Disabled</abp-nav-item>
 | |
| </abp-nav>
 | |
| </pre>
 | |
|     </div>
 | |
| </div>
 |