55 lines
1.8 KiB
HTML
55 lines
1.8 KiB
HTML
<!--
|
|
=========================================================
|
|
* Blk• Design System Pro - v1.0.0
|
|
=========================================================
|
|
|
|
* Product Page: https://www.creative-tim.com/product/blk-design-system-pro
|
|
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
|
|
|
|
* Coded by www.creative-tim.com
|
|
|
|
=========================================================
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
-->
|
|
{% extends "blk-pro-mvc/base.html" %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
{% get_media_prefix as MEDIA_PREFIX %}
|
|
|
|
<body class="contact-page">
|
|
<div class="wrapper"
|
|
style="background-image: url('{% static 'blk-pro/assets/img/dots.png' %}'); background-size: contain;">
|
|
|
|
<div class="page-header header-filter contactus-3">
|
|
<div class="page-header-image"
|
|
style="background-image: url('{{ MEDIA_PREFIX }}{{ configuration.img.fhd }}');"></div>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-12 text-center">
|
|
<h1 class="title">{{ configuration.organisation }}</h1>
|
|
<h3>{{ configuration.short_description }}</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- START EVENTS LIST -->
|
|
<img src="{% static 'blk-pro/assets/img/path2.png' %}" class="path shape">
|
|
{% include 'blk-pro-mvc/events_list.html' %}
|
|
<!-- END EVENTS LIST-->
|
|
<img src="{% static 'blk-pro/assets/img/path3.png' %}" class="path shape">
|
|
{% include 'blk-pro-mvc/calendar.html' %}
|
|
|
|
|
|
</div>
|
|
<!-- ********* END WRAPPER ********* -->
|
|
|
|
</body>
|
|
|
|
{% endblock content %}
|
|
|