2021-12-06 11:00:02 +03:00
|
|
|
<?php extend('layouts/backend_layout') ?>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
|
|
|
<?php section('content') ?>
|
|
|
|
|
2022-01-05 11:16:23 +03:00
|
|
|
<div id="about-page" class="container backend-page">
|
|
|
|
<div id="about" class="col-lg-8 offset-lg-2">
|
2021-11-22 09:39:00 +03:00
|
|
|
<h3>Easy!Appointments</h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<?= lang('about_app_info') ?>
|
|
|
|
</p>
|
|
|
|
|
2022-01-05 11:16:23 +03:00
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-header">
|
|
|
|
<?= lang('current_version') ?>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<strong>
|
|
|
|
<?= config('version') ?>
|
|
|
|
</strong>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
</div>
|
2022-01-05 11:16:23 +03:00
|
|
|
|
2021-11-22 09:39:00 +03:00
|
|
|
<h3><?= lang('support') ?></h3>
|
2022-01-05 11:16:23 +03:00
|
|
|
|
2021-11-22 09:39:00 +03:00
|
|
|
<p>
|
|
|
|
<?= lang('about_app_support') ?>
|
2022-01-05 11:16:23 +03:00
|
|
|
</p>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-01-05 11:16:23 +03:00
|
|
|
<div class="d-lg-flex justify-content-between flex-wrap alight-items-center">
|
|
|
|
<div class="text-center mb-3">
|
|
|
|
<a class="btn btn-secondary d-block" href="https://easyappointments.org">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('official_website') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
2022-01-05 11:16:23 +03:00
|
|
|
<div class="text-center mb-3">
|
|
|
|
<a class="btn btn-secondary d-block" href="https://groups.google.com/forum/#!forum/easy-appointments">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('support_group') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center mb-3">
|
|
|
|
<a class="btn btn-secondary d-block" href="https://github.com/alextselegidis/easyappointments/issues">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
<?= lang('project_issues') ?>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center mb-3">
|
|
|
|
<a class="btn btn-secondary d-block" href="https://facebook.com/easyappts">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
Facebook
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="text-center mb-3">
|
|
|
|
<a class="btn btn-secondary d-block" href="https://twitter.com/easyappts">
|
|
|
|
<i class="fas fa-external-link-alt me-2"></i>
|
|
|
|
Twitter
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-22 09:39:00 +03:00
|
|
|
|
|
|
|
<h3><?= lang('license') ?></h3>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<?= lang('about_app_license') ?>
|
|
|
|
<a href="http://www.gnu.org/copyleft/gpl.html">http://www.gnu.org/copyleft/gpl.html</a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?php section('content') ?>
|