website-frontend/templates/base.html

93 lines
3.4 KiB
HTML
Raw Normal View History

2023-07-08 11:06:26 +00:00
{% 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" %}">
2023-07-08 12:42:23 +00:00
<script src="{% static "dist/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "dist/js/jquery.min.js" %}"></script>
2023-07-08 11:06:26 +00:00
<title>{% page_attribute "page_title" %} {% static_placeholder "site_title" or %}Kumi Systems{% endstatic_placeholder %}</title>
{% render_block "css" %}
</head>
<body id="page-top" style="color: rgb(87,87,87);">
{% cms_toolbar %}
2023-07-08 14:50:12 +00:00
{% 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 %}
2023-07-08 11:06:26 +00:00
<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('https://kumi.systems/wp-content/uploads/2020/12/cropped-schrift_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>
</body>
</html>