{% extends "layout.html.twig" %}
{% block headerStyles %}
<link rel="stylesheet" href="{{ asset('css/home-style.css') }}">
<style>
body {
font-family: 'Montserrat', Arial, Helvetica, sans-serif;
background-color: #0592F0;
background-image: url('{{ asset('images/home/background.jpg') }}');
background-size: cover;
color: #fff;
font-size: 12px;
}
</style>
{% endblock %}
{% block headerContent %}{% endblock %}
{% block body %}
<div id="wrapper">
<div class="container text-center">
<div class="col-md-12 section-item">
<h4>
<img src="{{ asset('images/home/logo.png') }}" class="img-responsive">
</h4>
</div>
<div class="row">
{#
<div class="col-md-4">
<a href="global/index.html">
<img src="/web/20190419213658im_/http://gabor-ua.com/img/3.jpg" class="img-responsive"></a>
<h2>Global - Супермаркет</h2>
</div>
#}
<div class="col-md-6 section-item">
<a href="{{ url('pro_nac') }}">
<img src="{{ asset('images/home/transport-service.jpg') }}" class="img-responsive"></a>
<h2>ЗА ВАМИ ЗАМОВЛЕННЯ – ЗА НАМИ ВИКОНАННЯ! <br />ТРАНСПОРТНІ ПОСЛУГИ</h2>
</div>
<div class="col-md-6 section-item">
<a href="virobnictvo/index.html">
<img src="{{ asset('images/home/production.jpg') }}" class="img-responsive"></a>
<h2>ВИРОБНИЦТВО</h2>
</div>
</div>
</div>
</div>
{% endblock %}
{% block footer %}{% endblock %}