kenzok8-package/luci-theme-argon/luasrc/view/themes/argon/footer.htm

47 lines
1.4 KiB
HTML
Raw Permalink Normal View History

2021-09-05 16:50:22 +08:00
<%#
2021-09-24 23:37:27 +08:00
Argon is a clean HTML5 theme for LuCI. It is based on luci-theme-material Argon Template
2021-09-05 16:50:22 +08:00
luci-theme-argon
2021-09-24 23:37:27 +08:00
Copyright 2020 Jerrykuku <jerrykuku@qq.com>
2021-09-05 16:50:22 +08:00
Have a bug? Please create an issue here on GitHub!
https://github.com/jerrykuku/luci-theme-argon/issues
2021-09-24 23:37:27 +08:00
luci-theme-material:
Copyright 2015 Lutty Yang <lutty@wcan.in>
2021-09-05 16:50:22 +08:00
Agron Theme
2021-09-24 23:37:27 +08:00
https://demos.creative-tim.com/argon-dashboard/index.html
2021-09-05 16:50:22 +08:00
2021-09-24 23:37:27 +08:00
Licensed to the public under the Apache License 2.0
2021-09-05 16:50:22 +08:00
-%>
2021-09-24 23:37:27 +08:00
<% local ver = require "luci.version" %>
2021-09-05 16:50:22 +08:00
</div>
2021-09-24 23:37:27 +08:00
<footer class="mobile-hide">
<div>
2023-05-14 23:35:47 +08:00
<a class="luci-link" href="https://github.com/openwrt/luci" target="_blank">Powered by <%= ver.luciname %> (<%= ver.luciversion %>)</a> /
<a href="https://github.com/jerrykuku/luci-theme-argon" target="_blank">ArgonTheme <%# vPKG_VERSION %></a> /
2021-09-24 23:37:27 +08:00
<%= ver.distversion %>
<ul class="breadcrumb pull-right" id="modemenu" style="display:none"></ul>
2021-09-05 16:50:22 +08:00
</div>
</footer>
</div>
</div>
<script>
// thanks for Jo-Philipp Wich <jow@openwrt.org>
var luciLocation = <%= luci.http.write_json(luci.dispatcher.context.path) %>;
var winHeight = $(window).height();
$(window).resize(function () {
var winWidth = $(window).width()
if(winWidth < 600){
var newHeight = $(this).height();
var keyboradHeight = newHeight - winHeight;
$(".ftc").css("bottom", keyboradHeight + 30);
}
})
</script>
2021-10-16 20:28:06 +08:00
<script type="text/javascript">L.require('menu-argon')</script>
2021-09-05 16:50:22 +08:00
</body>
</html>