31 lines
1.3 KiB
Twig
31 lines
1.3 KiB
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}E-WIKI - Electric Vehicle Database{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="header">
|
|
<h1 class="title"><i class="fas fa-car-battery"></i> E-WIKI</h1>
|
|
|
|
{% include '_components/search.html.twig' %}
|
|
</div>
|
|
|
|
<div id="brandsSection">
|
|
<h2 class="section-title"><i class="fas fa-industry"></i> 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"><i class="fas fa-car"></i> {{ brand.name }}</div>
|
|
{% if brand.description %}
|
|
<div class="brand-description">{{ brand.description }}</div>
|
|
{% endif %}
|
|
<div class="brand-year"><i class="fas fa-calendar-alt"></i> Founded: {{ brand.foundedYear }}</div>
|
|
{% if brand.headquarters %}
|
|
<div class="brand-year"><i class="fas fa-map-marker-alt"></i> {{ brand.headquarters }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% else %}
|
|
<div class="no-results"><i class="fas fa-exclamation-triangle"></i> No brands available</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %} |