29 lines
815 B
PHP
29 lines
815 B
PHP
<?php
|
|
/**
|
|
* @var array $project
|
|
*/
|
|
$services = $project['content']['generated']['services'] ?? [];
|
|
$pricingNote = $project['wizard_data']['services']['pricing_note'] ?? '';
|
|
?>
|
|
<section id="services" class="services">
|
|
<div class="container">
|
|
<div class="section-header">
|
|
<h2>Naše služby</h2>
|
|
</div>
|
|
<div class="services-grid">
|
|
<?php foreach ($services as $service): ?>
|
|
<article class="service-card">
|
|
<h3><?= e($service['title']) ?></h3>
|
|
<p><?= e($service['text']) ?></p>
|
|
<?php if (!empty($service['price_info'])): ?>
|
|
<div class="price"><?= e($service['price_info']) ?></div>
|
|
<?php endif; ?>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php if ($pricingNote): ?>
|
|
<p class="pricing-note"><em><?= e($pricingNote) ?></em></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</section>
|