Files
register/marko_unpacked/marko/portal/widgets/views/mobile-app-buttons.php
T
Admin Nasledstvo ac168868ee Initial import
2026-05-01 20:52:04 +03:00

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>