23 lines
		
	
	
		
			534 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			534 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en" charset="utf-8">
 | 
						|
{% include "partials/head.html" %}
 | 
						|
{% include "partials/header.html" %}
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
  <div id="content" class="overflow-hidden bg-dark">
 | 
						|
    {% block content %}{% endblock %}
 | 
						|
  </div>
 | 
						|
    {% include "partials/footer.html" %}
 | 
						|
  <script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
 | 
						|
</body>
 | 
						|
 | 
						|
<style>
 | 
						|
.bg-dark {
 | 
						|
  background: rgb(15,15,15);
 | 
						|
  background: radial-gradient(circle, rgba(15,15,15,1) 0%, rgb(12, 0, 30) 50%, rgba(15,15,15,1) 100%);
 | 
						|
}
 | 
						|
 | 
						|
</style>
 | 
						|
 | 
						|
</html> |