mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-03 06:57:54 -05:00
31 lines
1.4 KiB
PHP
31 lines
1.4 KiB
PHP
<?php
|
|
|
|
use Config\OSPOS;
|
|
|
|
?>
|
|
|
|
</main>
|
|
|
|
<footer class="flex-shrink-0 text-body-secondary small fw-semibold bg-secondary-subtle py-3 d-print-none">
|
|
<div class="container-lg d-flex flex-wrap justify-content-center align-items-center">
|
|
<div>
|
|
<span><?= lang('Common.copyrights', [date('Y')]) ?></span>
|
|
</div>
|
|
<div>
|
|
<span class="d-none d-xl-block"> · <a href="https://opensourcepos.org" class="text-body-secondary" target="_blank" rel="noopener"><?= lang('Common.website') ?></a> · </span>
|
|
<span class="d-xl-none"> · <?= lang('Common.website') ?> · </span>
|
|
</div>
|
|
<div>
|
|
<span><?= esc(config('App')->application_version) ?> -</span>
|
|
<span class="d-none d-xl-inline"><a href="https://github.com/opensourcepos/opensourcepos/commit/<?= esc(config(OSPOS::class)->commit_sha1) ?>" class="text-body-secondary" target="_blank" rel="noopener"><?= esc(substr(config(OSPOS::class)->commit_sha1, 0, 6)); ?></a></span>
|
|
<span class="d-xl-none"><?= esc(substr(config(OSPOS::class)->commit_sha1, 0, 6)); ?></span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script type="text/javascript" src="js/bs-tooltips.js"></script>
|
|
<script type="text/javascript" src="js/bs-modal_switch_content.js"></script>
|
|
</body>
|
|
|
|
</html>
|