80 lines
2.2 KiB
HTML
80 lines
2.2 KiB
HTML
<%#
|
|
Argone is a clean HTML5 theme for LuCI. It is based on luci-theme-material Argone Template
|
|
|
|
luci-theme-argone
|
|
Copyright 2020 Jerrykuku
|
|
|
|
Have a bug? Please create an issue here on GitHub!
|
|
https://github.com/kenzok78/luci-theme-argone/issues
|
|
|
|
luci-theme-bootstrap:
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
Copyright 2008-2016 Jo-Philipp Wich <jow@openwrt.org>
|
|
Copyright 2012 David Menting <david@nut-bolt.nl>
|
|
|
|
MUI:
|
|
https://github.com/muicss/mui
|
|
|
|
luci-theme-material:
|
|
https://github.com/LuttyYang/luci-theme-material/
|
|
|
|
Argone Theme
|
|
https://demos.creative-tim.com/argon-dashboard/index.html
|
|
|
|
Login background
|
|
https://unsplash.com/
|
|
|
|
Font generate by Icomoon
|
|
https://icomoon.io/
|
|
|
|
Licensed to the public under the Apache License 2.0
|
|
-%>
|
|
|
|
<%
|
|
local ver = require "luci.version"
|
|
local disp = require "luci.dispatcher"
|
|
local request = disp.context.path
|
|
local category = request[1]
|
|
local tree = disp.node()
|
|
local categories = disp.node_childs(tree)
|
|
%>
|
|
</div>
|
|
<footer>
|
|
<div class="ftc">
|
|
<a class="luci-link" href="https://github.com/openwrt/luci" target="_blank">Powered by <%= ver.luciname %>
|
|
(<%= ver.luciversion %>)</a> /
|
|
<a href="https://github.com/kenzok78/luci-theme-argone" target="_blank">ArgoneTheme <%# vPKG_VERSION %></a> /
|
|
<%= ver.distversion %>
|
|
<% if #categories > 1 then %>
|
|
<ul class="breadcrumb pull-right" id="modemenu">
|
|
<% for i, r in ipairs(categories) do %>
|
|
<li<% if request[1] == r then %> class="active" <%end%>><a
|
|
href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%></a> <span
|
|
class="divider">|</span></li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
if (window.innerHeight < 660) {
|
|
document.getElementsByClassName("ftc")[0].style.display = "none";
|
|
} else {
|
|
document.getElementsByClassName("ftc")[0].style.display = "block";
|
|
}
|
|
|
|
window.addEventListener('resize', function() {
|
|
if (window.innerHeight < 660) {
|
|
document.getElementsByClassName("ftc")[0].style.display = "none";
|
|
} else {
|
|
document.getElementsByClassName("ftc")[0].style.display = "block";
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<script src="<%=media%>/js/styles-argone.js<%# ?v=PKG_VERSION %>"></script>
|
|
</body>
|
|
</html>
|