Add ungleich header.html _header_item.html
This commit is contained in:
parent
7a9c624012
commit
4e8b3cdbe8
2 changed files with 34 additions and 0 deletions
|
@ -0,0 +1,14 @@
|
||||||
|
<div class="container">
|
||||||
|
<div>
|
||||||
|
{% if instance.image %}
|
||||||
|
<img src="{{ instance.image.url }}" height="300" alt=""
|
||||||
|
class="logo-image" img-responsive="" width="300"/>
|
||||||
|
<div class="header-vh"></div>
|
||||||
|
{% endif %}
|
||||||
|
<div>
|
||||||
|
<span class="intro-cap-sans-transform">
|
||||||
|
{{ instance.description }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
20
ungleich_page/templates/ungleich_page/ungleich/header.html
Normal file
20
ungleich_page/templates/ungleich_page/ungleich/header.html
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{% load cms_tags %}
|
||||||
|
<header class="header_slider" style="background-image: url({{ instance.background_image.url }})">
|
||||||
|
<div id="carousel-header-ungleich" class="carousel slide" data-ride="carousel" data-interval="{{ instance.carousel_data_interval}}">
|
||||||
|
<!-- Indicators -->
|
||||||
|
<ol class="carousel-indicators">
|
||||||
|
{% for plugin in instance.child_plugin_instances %}
|
||||||
|
<li data-target="#carousel-header-ungleich" data-slide-to="{{forloop.counter0}}" {% if forloop.counter0 == 0 %}class="active" {% endif %}></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<!-- Wrapper for slides -->
|
||||||
|
<div class="carousel-inner" role="listbox">
|
||||||
|
{% for plugin in instance.child_plugin_instances %}
|
||||||
|
<div class="item {% if forloop.counter0 == 0 %}active{% endif %}">
|
||||||
|
{% render_plugin plugin %}
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</header>
|
Loading…
Reference in a new issue