31 lines
		
	
	
		
			643 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			643 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
{% load static i18n fontawesome_5 bootstrap4 %}
 | 
						|
<html lang="{{ language }}">
 | 
						|
<head>
 | 
						|
    <meta charset="UTF-8">
 | 
						|
    <title>{{ base_title }}</title>
 | 
						|
    {% bootstrap_css %}
 | 
						|
    {% bootstrap_javascript jquery='full' %}
 | 
						|
    {% fontawesome_5_static %}
 | 
						|
    <link rel="stylesheet" href="{% static 'css/konova.css' %}">
 | 
						|
    {% block head %}
 | 
						|
 | 
						|
    {% endblock %}
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
    <header>
 | 
						|
        {% block header %}
 | 
						|
            {% include 'navbar.html' %}
 | 
						|
        {% endblock %}
 | 
						|
    </header>
 | 
						|
    <div class="container-fluid">
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
    {% block footer %}
 | 
						|
        {% include 'footer.html' %}
 | 
						|
    {% endblock %}
 | 
						|
</body>
 | 
						|
 | 
						|
 | 
						|
</html> |