544866ddee12d0c99543fa61019dc5c29c6b599e
[project/luci.git] / themes / luci-theme-material / luasrc / view / themes / material / footer.htm
1 <%#
2 Material is a clean HTML5 theme for LuCI. It is based on luci-theme-bootstrap and MUI
3
4 luci-theme-material
5 Copyright 2015 Lutty Yang <lutty@wcan.in>
6
7 Have a bug? Please create an issue here on GitHub!
8 https://github.com/LuttyYang/luci-theme-material/issues
9
10 luci-theme-bootstrap:
11 Copyright 2008 Steven Barth <steven@midlink.org>
12 Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
13 Copyright 2012 David Menting <david@nut-bolt.nl>
14
15 MUI:
16 https://github.com/muicss/mui
17
18 Licensed to the public under the Apache License 2.0
19 -%>
20
21 <%
22 local ver = require "luci.version"
23 local disp = require "luci.dispatcher"
24 local request = disp.context.path
25 local category = request[1]
26 local tree = disp.node()
27 local categories = disp.node_childs(tree)
28 %>
29 </div>
30 <footer class="mobile-hide">
31 <a href="https://github.com/openwrt/luci">Powered by <%= ver.luciname %> (<%= ver.luciversion %>)</a> / <%= ver.distversion %>
32 <% if #categories > 1 then %>
33 <ul class="breadcrumb pull-right" id="modemenu">
34 <% for i, r in ipairs(categories) do %>
35 <li<% if request[1] == r then %> class="active"<%end%>>
36 <a href="<%=controller%>/<%=r%>/"><%=striptags(translate(tree.nodes[r].title))%></a>
37 <span class="divider">|</span>
38 </li>
39 <% end %>
40 </ul>
41 <% end %>
42 </footer>
43 </div>
44 </div>
45 <script>
46 // thanks for Jo-Philipp Wich <jow@openwrt.org>
47 var luciLocation = <%= luci.http.write_json(luci.dispatcher.context.path) %>;
48 </script>
49 <script src="<%=media%>/js/jquery.min.js"></script>
50 <script src="<%=media%>/js/script.js"></script>
51 </body>
52 </html>