forked from hero/www_hero_project
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			692 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			692 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="en" charset="utf-8">
 | 
						|
 | 
						|
    {% include "partials/head.html" %}
 | 
						|
    
 | 
						|
    <body>
 | 
						|
        {% include "partials/header.html" %}
 | 
						|
        <div id="content" class="p-4 pt-24 lg:pt-0 sm:p-12 lg:p-0 overflow-hidden">
 | 
						|
            {% block content %}{% endblock %}    
 | 
						|
        </div>
 | 
						|
        {% include "partials/cta.html" %}
 | 
						|
        {% include "partials/footer.html" %}
 | 
						|
        <script type="text/javascript" src="{{ get_url(path='js/custom.js')}}"></script>
 | 
						|
    </body>
 | 
						|
</html>
 | 
						|
<style>
 | 
						|
    body {
 | 
						|
        background: rgb(15,6,47);
 | 
						|
background: radial-gradient(circle, rgba(15,6,47,1) 0%, rgba(3,22,53,1) 22%, rgba(0,2,5,1) 89%, rgba(0,0,0,0.9990589985994398) 100%);
 | 
						|
}
 | 
						|
</style> |