Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<div class="row">
{% if image %}
<div class="col-sm-3"><img src="{{ image }}" alt="{{ store }}" title="{{ store }}" class="img-thumbnail" /></div>
{% endif %}
<div class="col-sm-3"><strong>{{ store }}</strong><br />
<address>
{{ address }}
</address>
{% if geocode %}
<a href="https://maps.google.com/maps?q={{ geocode|url_encode }}&hl={{ geocode_hl }}&t=m&z=15" target="_blank" class="btn btn-info"><i class="fa fa-map-marker"></i> {{ button_map }}</a>
{% endif %}
</div>
<div class="col-sm-3"><strong>{{ text_telephone }}</strong><br>
{{ telephone }}<br />
<br />
{% if fax %}
<strong>{{ text_fax }}</strong><br>
{{ fax }}
{% endif %}
</div>
<div class="col-sm-3">
{% if open %}
<strong>{{ text_open }}</strong><br />
{{ open }}<br />
<br />
{% endif %}
{% if comment %}
<strong>{{ text_comment }}</strong><br />
{{ comment }}
{% endif %}
</div>
</div>
$data['store'] = $this->config->get('config_name');
$data['address'] = nl2br($this->config->get('config_address'));
$data['geocode'] = $this->config->get('config_geocode');
$data['geocode_hl'] = $this->config->get('config_language');
$data['telephone'] = $this->config->get('config_telephone');
$data['fax'] = $this->config->get('config_fax');
$data['open'] = nl2br($this->config->get('config_open'));
$data['comment'] = $this->config->get('config_comment');
разумеется )) подключай к любому ( нужному ) php файлу , в папке контроллеров если дефолтная тема.спасибо всем, файл инклюдом можно целиком подключить? файл большой и весь его переделывать у меня знаний не хватит.