website-frontend/templates/base.html

95 lines
3.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load static cms_tags sekizai_tags menu_tags %}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<link rel="stylesheet" href="{% static "dist/css/bootstrap.min.css" %}">
<link rel="stylesheet" href="https://fontproxy.kumi.systems/css?family=Montserrat:400,700">
<link rel="stylesheet" href="https://fontproxy.kumi.systems/css?family=Kaushan+Script">
<link rel="stylesheet" href="https://fontproxy.kumi.systems/css?family=Droid+Serif:400,700,400italic,700italic">
<link rel="stylesheet" href="https://fontproxy.kumi.systems/css?family=Roboto+Slab:400,100,300,700">
<link rel="stylesheet" href="https://fa.kumi.systems/css/all.min.css">
<link rel="stylesheet" href="{% static "css/style.css" %}">
<script src="{% static "dist/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "dist/js/jquery.min.js" %}"></script>
<title>{% page_attribute "page_title" %} {% static_placeholder "site_title" or %}Kumi Systems{% endstatic_placeholder %}</title>
{% render_block "css" %}
{% static_placeholder "head" %}
</head>
<body id="page-top" style="color: rgb(87,87,87);">
{% cms_toolbar %}
{% if messages %}
<div class="container">
<div class="row">
<div class="col-md-12">
{% for message in messages %}
<div class="alert alert-{{ message.tags }}">
{{ message }}
</div>
{% endfor %}
</div>
</div>
</div>
{% endif %}
<nav class="navbar navbar-light navbar-expand-md fixed-top" style="background-color: rgba(255,255,255,1)!important;">
<div class="container">
<ul class="navbar-nav mr-auto">
<a class="navbar-brand" href="/" style="min-width: 130px;min-height: 50px;background-image: url('{% static "img/logo.png" %}');background-size: contain;background-repeat: no-repeat;"></a>
<ul id="menu-header" class="nav navbar-nav mr-auto">
{% show_menu 0 100 100 100 "navbar-menu.html" %}
</ul>
</ul>
<ul class="navbar-nav ml-auto">
<div class="collapse navbar-collapse" id="navcol-1">
<span class="navbar-text actions">
{% static_placeholder "navbar_actions" %}
</span>
</ul></div>
</nav>
</div>
{% block header %}{% endblock %}
<section style="padding-top: 5%;" class="page type-page status-publish hentry">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="text-uppercase section-heading" style="margin-bottom: -2px;">{% page_attribute "page_title" %}</h2>
</div>
</div>
</div>
<div class="container">
{% placeholder "content" %}
</div>
</section>
<footer>
<div class="container">
{% static_placeholder "footer" %}
</div>
</footer>
{% render_block "js" %}
<script src="{% static "js/main.js" %}"></script>
{% static_placeholder "footer_js" %}
</body>
</html>