mirror of https://github.com/D4-project/d4-core
				
				
				
			
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			HTML
		
	
	
| <!DOCTYPE html>
 | |
| 
 | |
| <html>
 | |
| <head>
 | |
| 	<title>D4-Project</title>
 | |
| 	<link rel="icon" href="{{ url_for('static', filename='img/d4-logo.png')}}">
 | |
| 	<!-- Core CSS -->
 | |
| 	<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
 | |
| 	<link href="{{ url_for('static', filename='font-awesome/css/font-awesome.css') }}" rel="stylesheet">
 | |
| 	<link href="{{ url_for('static', filename='css/dataTables.bootstrap.min.css') }}" rel="stylesheet">
 | |
| 
 | |
| 	<!-- JS -->
 | |
| 	<script src="{{ url_for('static', filename='js/jquery.js')}}"></script>
 | |
| 	<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js')}}"></script>
 | |
| 	<script src="{{ url_for('static', filename='js/dataTables.bootstrap.min.js')}}"></script>
 | |
| 
 | |
|   <style>
 | |
| 
 | |
|   </style>
 | |
| 
 | |
| 
 | |
| </head>
 | |
| 
 | |
| <body>
 | |
| 
 | |
| 	{% include 'navbar.html' %}
 | |
| 
 | |
| 	<div class="d-flex justify-content-center">
 | |
| 	<pre>
 | |
|                                 __    __   ______   __    __
 | |
|                                /  |  /  | /      \ /  |  /  |
 | |
|                                $$ |  $$ |/$$$$$$  |$$ |  $$ |
 | |
|                                $$ |__$$ |$$$  \$$ |$$ |__$$ |
 | |
|                                $$    $$ |$$$$  $$ |$$    $$ |
 | |
|                                $$$$$$$$ |$$ $$ $$ |$$$$$$$$ |
 | |
|                                      $$ |$$ \$$$$ |      $$ |
 | |
|                                      $$ |$$   $$$/       $$ |
 | |
|        _______   __    __            $$/  $$$$$$/        $$/                                __
 | |
|       /       \ /  |  /  |                                                                 /  |
 | |
|       $$$$$$$  |$$ |  $$ |        ______    ______    ______      __   ______    _______  _$$ |_
 | |
|       $$ |  $$ |$$ |__$$ |       /      \  /      \  /      \    /  | /      \  /       |/ $$   |
 | |
|       $$ |  $$ |$$    $$ |      /$$$$$$  |/$$$$$$  |/$$$$$$  |   $$/ /$$$$$$  |/$$$$$$$/ $$$$$$/
 | |
|       $$ |  $$ |$$$$$$$$ |      $$ |  $$ |$$ |  $$/ $$ |  $$ |   /  |$$    $$ |$$ |        $$ | __
 | |
|       $$ |__$$ |      $$ |      $$ |__$$ |$$ |      $$ \__$$ |   $$ |$$$$$$$$/ $$ \_____   $$ |/  |
 | |
|       $$    $$/       $$ |      $$    $$/ $$ |      $$    $$/    $$ |$$       |$$       |  $$  $$/
 | |
|       $$$$$$$/        $$/       $$$$$$$/  $$/        $$$$$$/__   $$ | $$$$$$$/  $$$$$$$/    $$$$/
 | |
|                                 $$ |                       /  \__$$ |
 | |
|                                 $$ |                       $$    $$/
 | |
|                                 $$/                         $$$$$$/
 | |
| 
 | |
| 	</pre>
 | |
| 	</div>
 | |
| 
 | |
| 	{% include 'navfooter.html' %}
 | |
| </body>
 | |
| 
 | |
| <script>
 | |
| $(document).ready(function(){
 | |
|   $("#nav-home").addClass("active");
 | |
| } );
 | |
| </script>
 | |
| 
 | |
| </html>
 |