almost functional
This commit is contained in:
55
custom/otssignange/views/about-text.twig
Normal file
55
custom/otssignange/views/about-text.twig
Normal file
@@ -0,0 +1,55 @@
|
||||
{#
|
||||
/**
|
||||
* Copyright (C) 2026 OTS Signs
|
||||
*
|
||||
* About dialog content for OTS Signs.
|
||||
*/
|
||||
#}
|
||||
{% extends "form-base.twig" %}
|
||||
|
||||
{% block formTitle %}{% trans "About" %}{% endblock %}
|
||||
|
||||
{% block formButtons %}
|
||||
{% trans "Close" %}, XiboDialogClose()
|
||||
{% endblock %}
|
||||
|
||||
{% block formHtml %}
|
||||
<div class="about-container">
|
||||
<h2>
|
||||
{% trans "About" %}
|
||||
<a href="https://ots-signs.com" target="_blank" rel="noopener noreferrer">OTS Signs</a>
|
||||
</h2>
|
||||
<p>
|
||||
{% trans "An" %}
|
||||
<a href="https://oribi-tech.com" target="_blank" rel="noopener noreferrer">Oribi Technology Services</a>
|
||||
{% trans "product." %}
|
||||
</p>
|
||||
<p class="text-muted">{% trans "OTS Signs provides a compact, focused interface and hosting for Xibo CMS" %}</p>
|
||||
|
||||
{% set appVersion = version|default("dev") %}
|
||||
{% set appEnvironment = appEnvironment|default(environment|default("local")) %}
|
||||
{% set commitSha = revision|default("") %}
|
||||
|
||||
<div class="about-meta">
|
||||
<div>{% trans "Version" %}: {{ appVersion }}</div>
|
||||
<div>{% trans "Environment" %}: {{ appEnvironment }}</div>
|
||||
{% if commitSha %}
|
||||
<div>{% trans "Commit" %}: {{ commitSha|slice(0, 7) }}</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
<div class="about-links">
|
||||
<a href="/privacy">{% trans "Privacy Policy" %}</a>
|
||||
<a href="/terms">{% trans "Terms of Service" %}</a>
|
||||
<a href="/open-source-licenses">{% trans "Open Source Licenses" %}</a>
|
||||
</div>
|
||||
|
||||
<div class="about-disclaimer">
|
||||
<strong>{% trans "Disclaimer:" %}</strong>
|
||||
{% trans "OTS Signs is an independent product developed by Oribi Technology Services. It is not affiliated with or endorsed by the Xibo project or its maintainers. Xibo is a trademark of Xibo Digital Signage Ltd. Use of Xibo APIs is subject to their terms and conditions." %}
|
||||
<div class="mt-2">
|
||||
<a href="https://github.com/xibosignage/xibo" target="_blank" rel="noopener noreferrer">{% trans "Xibo CMS on GitHub" %}</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user