mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			36 lines
		
	
	
		
			751 B
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			751 B
		
	
	
	
		
			HTML
		
	
	
| <!DOCTYPE html>
 | |
| 
 | |
| <html>
 | |
| <head>
 | |
| 	<title>AIL-Framework</title>
 | |
| 	<link rel="icon" href="{{ url_for('static', filename='image/ail-icon.png')}}">
 | |
| 	<!-- Core CSS -->
 | |
| 	<link href="{{ url_for('static', filename='css/bootstrap4.min.css') }}" rel="stylesheet">
 | |
| 	<link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
 | |
| 
 | |
| 	<!-- JS -->
 | |
| 	<script src="{{ url_for('static', filename='js/jquery.js')}}"></script>
 | |
| 	<script src="{{ url_for('static', filename='js/bootstrap4.min.js')}}"></script>
 | |
| 
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| 
 | |
| 	{% include 'nav_bar.html' %}
 | |
| 
 | |
| 	<div class="container-fluid">
 | |
| 		<div class="row">
 | |
| 
 | |
| 			{% include 'crawler/menu_sidebar.html' %}
 | |
| 
 | |
| 			<div class="col-12 col-lg-10" id="core_content">
 | |
| 
 | |
| 
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 
 | |
| 
 | |
| </body>
 |