mirror of
				https://github.com/retspen/webvirtcloud
				synced 2025-07-31 12:41:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			No EOL
		
	
	
		
			646 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			No EOL
		
	
	
		
			646 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% load static %}
 | |
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <title>{% block title %}{% endblock %}</title>
 | |
| 
 | |
|     <link rel="icon" href="{% static "favicon.ico" %}">
 | |
|     <link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
 | |
|     <link href="{% static "css/dashboard.css" %}" rel="stylesheet">
 | |
| </head>
 | |
| <body>
 | |
|     {% block content %}{% endblock %}
 | |
|     <script src="{% static "js/jquery.min.js" %}"></script>
 | |
|     <script src="{% static "js/bootstrap.min.js" %}"></script>
 | |
| </body>
 | |
| </html> |