mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			926 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			926 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<%#
 | 
						|
 Copyright 2008 Steven Barth <steven@midlink.org>
 | 
						|
 Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
 | 
						|
 Copyright 2012 David Menting <david@nut-bolt.nl>
 | 
						|
 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)
 | 
						|
%>
 | 
						|
   <footer>
 | 
						|
    <a href="https://github.com/openwrt/luci">Powered by <%= 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 %>
 | 
						|
   </footer>
 | 
						|
   </div>
 | 
						|
  </div>
 | 
						|
 </body>
 | 
						|
</html>
 | 
						|
 |