evwiki/templates/home/index.html.twig
2025-05-26 07:32:25 +02:00

31 lines
1.1 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}E-WIKI - Electric Vehicle Database{% endblock %}
{% block body %}
<div class="header">
<h1 class="title">E-WIKI</h1>
{% include '_components/search.html.twig' %}
</div>
<div id="brandsSection">
<h2 class="section-title">Popular Electric Vehicle Brands</h2>
<div class="brands-grid">
{% for brand in brands %}
<div class="brand-card" data-brand-id="{{ brand.id }}">
<div class="brand-name">{{ brand.name }}</div>
{% if brand.description %}
<div class="brand-description">{{ brand.description }}</div>
{% endif %}
<div class="brand-year">Founded: {{ brand.foundedYear }}</div>
{% if brand.headquarters %}
<div class="brand-year">{{ brand.headquarters }}</div>
{% endif %}
</div>
{% else %}
<div class="no-results">No brands available</div>
{% endfor %}
</div>
</div>
{% endblock %}