mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-30 04:35:42 +00:00 
			
		
		
		
	* Refactor / reognaize docs structure * Refactor plugin docs structure * More refactoring / cleanup * Update build images * Gallery updates * Order images * Update part docs * Settings images * Stock images * Reitntroduce gallery * Add custom icon macro * Update icons * Cleanup * Fix link * Fix internal links * Revert some page moves * Fix links * Fix links
		
			
				
	
	
		
			29 lines
		
	
	
		
			461 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			461 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block tabs %}
 | |
| {{ super() }}
 | |
| 
 | |
| {% endblock tabs %}
 | |
| 
 | |
| {% block site_nav %}
 | |
| {% endblock site_nav %}
 | |
| 
 | |
| {% block content %}
 | |
| <style>
 | |
|   h1 {
 | |
|     font-family: Arial, Helvetica, sans-serif;
 | |
|     display: block;
 | |
|   }
 | |
| </style>
 | |
| 
 | |
| <section class="mdx-container">
 | |
|   <div class="md-grid md-typeset">
 | |
|     <div class="mdx-hero"></div>
 | |
|       <h1>
 | |
|         <i class="ti ti-search"></i> Page not found
 | |
|       </h1>
 | |
|   </div>
 | |
| </section>
 | |
| 
 | |
| {% endblock content %}
 |