22 lines
662 B
PHP
22 lines
662 B
PHP
<?php
|
|
$mobileApps = [
|
|
['Google Play', 'google-play', '/bg/app-download/nasledstvo.apk/'],
|
|
['Apple Store', 'apple-store', '/bg/app-download/nasledstvo.apk/'],
|
|
];
|
|
?>
|
|
|
|
|
|
|
|
|
|
<div class="flex" style="justify-content: center">
|
|
<?php foreach ($mobileApps as $mobileApp): ?>
|
|
<a href="<?= $mobileApp[2] ?>" class="mobile-button">
|
|
<img class="logo" src="/_public/images/mobile/<?= $mobileApp[1] ?>.png">
|
|
<div class="mb-content">
|
|
<div class="small-top"><?= \app\models\Ts::get(24) ?></div>
|
|
<div class="name"><?= $mobileApp[0] ?></div>
|
|
</div>
|
|
</a>
|
|
<?php endforeach; ?>
|
|
</div>
|