mirror of
https://github.com/kiddin9/op-packages.git
synced 2026-09-14 20:34:19 +08:00
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
{#
|
|
Footer body. One layout template and one client menu renderer: sidebar and top bar are the same
|
|
markup, morphed by :root[data-layout].
|
|
Licensed to the public under the Apache License 2.0.
|
|
-#}
|
|
{% if (!blank_page): %}
|
|
</div>{# /.fs-content #}
|
|
|
|
{#
|
|
role="contentinfo" is explicit because a <footer> gets it implicitly only when
|
|
its nearest ancestor is <body>, and this one must stay inside <main>: both
|
|
layouts lay .fs-main out as a flex column and order the footer within it.
|
|
The version strings are entityencode()d — /etc/openwrt_release is root-owned,
|
|
but an unescaped `&` in a distname would still break the markup.
|
|
#}
|
|
<footer class="fs-footer" role="contentinfo">
|
|
<span>
|
|
Powered by
|
|
<a href="https://github.com/openwrt/luci" target="_blank" rel="noreferrer">
|
|
{{ entityencode(version.luciname, true) }} ({{ entityencode(version.luciversion, true) }})</a>
|
|
/
|
|
<a href="{{ entityencode(version.disturl ?? '#', true) }}" target="_blank" rel="noreferrer">
|
|
{{ entityencode(version.distname, true) }} {{ entityencode(version.distversion, true) }} ({{ entityencode(version.distrevision, true) }})</a>
|
|
{% if (lua_active): %}
|
|
/ {{ _('Lua compatibility mode active') }}
|
|
{% endif %}
|
|
</span>
|
|
</footer>
|
|
</main>{# /.fs-main #}
|
|
</div>{# /.fs-shell #}
|
|
<script>L.require('menu-footstrap')</script>
|
|
<script>L.require('fs-select')</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|