HH/templates/presentations/slides/_section_divider.html
ismail c5f76b3855
Some checks are pending
Build and Push Docker Image / build (push) Waiting to run
updates
2026-05-11 14:45:30 +03:00

21 lines
831 B
HTML

{% load i18n static %}
<div class="slide-canvas slide-section" {% if slide.background_color %}style="background:{{ slide.background_color }}"{% endif %}>
<img src="{% static 'img/HH_R_ICON.png' %}" alt="" class="slide-logo--header slide-logo--light">
{% if slide.content.section_number %}
<div class="slide-section__number">{{ slide.content.section_number }}</div>
{% endif %}
{% if slide.content.section_label %}
<div class="slide-section__label">{{ slide.content.section_label }}</div>
{% endif %}
<h1 class="slide-section__title">{{ slide.title }}</h1>
{% if slide.subtitle %}
<p class="slide-section__subtitle">{{ slide.subtitle }}</p>
{% endif %}
<div class="slide-deco-blob slide-deco-blob--warm" style="width:500px;height:500px;bottom:-150px;right:-100px;"></div>
</div>