Initial import
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
Reference in New Issue
Block a user