mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-04-04 15:13:40 -04:00
17 lines
960 B
PHP
17 lines
960 B
PHP
<h3 class="text-center pb-3 d-none d-lg-block"><?= lang('Common.welcome_message') ?></h3>
|
|
|
|
<section class="container-fluid d-flex flex-wrap justify-content-center gap-3 p-0 py-1 py-lg-0">
|
|
<?php foreach ($allowed_modules as $module) { ?>
|
|
<div class="border border-primary rounded shadow-sm bg-primary-subtle text-center d-block" title="<?= lang("Module.$module->module_id" . '_desc') ?>">
|
|
<a href="<?= base_url($module->module_id) ?>">
|
|
<img class="d-block mx-auto p-2" src="<?= base_url("images/menubar/$module->module_id.svg") ?>" alt="Menubar Image"> <!-- TODO-BS5 alt text translatable -->
|
|
</a>
|
|
<a href="<?= base_url($module->module_id) ?>">
|
|
<div class="tile-text rounded-bottom d-block bg-primary text-light fw-bold p-2">
|
|
<span><?= lang("Module.$module->module_id") ?></span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<?php } ?>
|
|
</section>
|