26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!doctype html>
 | |
| <html lang="en">
 | |
| 
 | |
| <head>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" integrity="undefined" crossorigin="anonymous">
 | |
|     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js" integrity="undefined" crossorigin="anonymous"></script>
 | |
|     <link href="/static/custom-bootstrap-override.css" rel="stylesheet">
 | |
| 
 | |
|     <!-- Font Awesome JS -->
 | |
|     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.12/css/all.css" integrity="sha384-G0fIWCsCzJIMAVNQPfjH08cyYaUtMwjJwqiRKxxE/rx96Uroj1BtIQ6MLJuheaO9" crossorigin="anonymous">
 | |
| 
 | |
|     <!-- Jquery + ajax (dynamic content) -->
 | |
|     <script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
 | |
| 
 | |
|     <script src="/static/index.js"></script>
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| {% include "sidebar.html" %}
 | |
| <div class="container-fluid content">
 | |
|     {% block content %}{% endblock %}
 | |
| </div>
 | |
| </body>
 | |
| </html> | 
