mirror of
https://github.com/billz/raspap-webgui.git
synced 2025-12-26 23:26:47 +01:00
45 lines
2.9 KiB
PHP
45 lines
2.9 KiB
PHP
<!-- about general tab -->
|
|
<div class="tab-pane active" id="aboutgeneral">
|
|
<div class="row">
|
|
<div class="col-md-6 mt-3">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="ms-5 mt-2"><img class="about-logo" src="app/img/raspAP-logo.php" style="width: 175px; height:175px"></div>
|
|
<h2 class="mt-3 ms-4"><?php echo _("RaspAP") ." v".RASPI_VERSION; ?></h2>
|
|
<?php if (!RASPI_MONITOR_ENABLED) : ?>
|
|
<button type="button" class="btn btn-warning ms-4 mt-2" name="check-update" data-bs-toggle="modal" data-bs-target="#chkupdateModal" />
|
|
<i class="fa-solid fa-cloud-arrow-down ms-1 me-2"></i><?php echo _("Check for update"); ?>
|
|
</button>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-8">
|
|
<div class="mt-3">
|
|
<?php echo sprintf(
|
|
_('RaspAP is a co-creation of %1$s and %2$s with the contributions of our %3$s and %4$s. Learn more about joining the project as a %5$s, %6$s or %7$s with immediate access to %8$s available to %9$s.'),
|
|
'<a href="https://github.com/billz">billz</a>',
|
|
'<a href="https://github.com/sirlagz">SirLagz</a>',
|
|
'<a href="https://github.com/raspap/raspap-webgui/graphs/contributors">' . _('developer community') . '</a>',
|
|
'<a href="https://crowdin.com/project/raspap">' . _('language translators') . '</a>',
|
|
'<a href="https://docs.raspap.com/#get-involved">' . _('code contributor') . '</a>',
|
|
'<a href="https://docs.raspap.com/translations/">' . _('translator') . '</a>',
|
|
'<a href="https://github.com/sponsors/RaspAP">' . _('financial sponsor') . '</a>',
|
|
'<a href="https://docs.raspap.com/insiders/#whats-in-it-for-me">' . _('exclusive features') . '</a>',
|
|
'<strong>' . _('Insiders') . '</strong>'
|
|
); ?>
|
|
</div>
|
|
<div class="mt-3 project-links">
|
|
<div class="row">
|
|
<div class="col-6">GitHub <i class="fa-brands fa-github"></i> <a href="https://github.com/RaspAP/" target="_blank" rel="noopener">RaspAP</a></div>
|
|
<div class="col-6">X <i class="fa-brands fa-square-x-twitter"></i> <a href="https://x.com/rasp_ap" target="_blank" rel="noopener">@RaspAP</a></div>
|
|
<div class="col-6">Reddit <i class="fa-brands fa-reddit"></i> <a href="https://www.reddit.com/r/RaspAP/" target="_blank" rel="noopener">/r/RaspAP</a></div>
|
|
<div class="col-6">Discord <i class="fa-brands fa-discord"></i> <a href="https://discord.gg/KVAsaAR" target="_blank" rel="noopener">RaspAP</a></div>
|
|
<div class="col-6">Docs <i class="fas fa-book-reader"></i> <a href="https://docs.raspap.com/" target="_blank" rel="noopener">docs.raspap.com</a></div>
|
|
<div class="col-6">License <i class="fas fa-balance-scale"></i> <a href="https://github.com/raspap/raspap-webgui/blob/master/LICENSE" target="_blank" rel="noopener">GPL-3.0</a></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.row -->
|
|
</div><!-- /.tab-pane | general tab -->
|