Files
tecvico-website/templates/pages/home.html
T
2026-08-01 16:57:49 +03:30

47 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% load static %}
{% block title %}Home{% endblock %}
{% block meta_description %}Tecvico — Innovation, Advancement, Competition. Advanced solutions for business development.{% endblock %}
{% block content %}
<section class="hero" aria-labelledby="hero-heading">
<div class="hero-blobs" aria-hidden="true">
<img src="{% static 'images/tecvico/hero-decoration.svg' %}" class="blob-img blob-img--hero-left" alt="" />
</div>
<div class="container hero-content">
<div class="hero-text">
{% if hero %}
{% if hero.badge %}<div class="hero-badge">{{ hero.badge }}</div>{% endif %}
{% if hero.title or hero.title_highlight %}
<h1 class="hero-title" id="hero-heading">
{% if hero.title %}{{ hero.title }}{% endif %}
{% if hero.title and hero.title_highlight %}<br />{% endif %}
{% if hero.title_highlight %}<span class="gradient-text">{{ hero.title_highlight }}</span>{% endif %}
</h1>
{% endif %}
{% if hero.subtitle %}<p class="hero-subtitle">{{ hero.subtitle }}</p>{% endif %}
{% if hero.description %}<p class="hero-description">{{ hero.description }}</p>{% endif %}
{% if hero.primary_cta_text or hero.secondary_cta_text %}
<div class="hero-actions">
{% if hero.primary_cta_text %}<a href="{{ hero.primary_cta_url }}" class="btn-primary">{{ hero.primary_cta_text }}</a>{% endif %}
{% if hero.secondary_cta_text %}<a href="{{ hero.secondary_cta_url }}" class="btn-ghost">{{ hero.secondary_cta_text }}</a>{% endif %}
</div>
{% endif %}
{% endif %}
</div>
<div class="hero-visual fade-in">
{% if site_branding.hero_logo %}
<img src="{{ site_branding.hero_logo.url }}" alt="{{ site_branding.hero_logo_alt|default:'Tecvico showcase' }}" loading="eager" />
{% else %}
<img src="{% static 'images/tecvico/hero-image.svg' %}" alt="Tecvico showcase" loading="eager" />
{% endif %}
</div>
</div>
</section>
{% include "partials/_page_sections.html" with sections=homepage_sections website_project_briefs=website_project_briefs %}
{% endblock %}