From 1ff74a66f66ff7908b52a782d41c04c568e436ca Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 24 May 2009 13:59:42 +0000 Subject: themes: add freifunk hannover theme --- .../view/themes/freifunk-hannover/footer.htm | 21 +++ .../view/themes/freifunk-hannover/header.htm | 163 +++++++++++++++++++++ 2 files changed, 184 insertions(+) create mode 100644 themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/footer.htm create mode 100644 themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/header.htm (limited to 'themes/freifunk-hannover/luasrc') diff --git a/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/footer.htm b/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/footer.htm new file mode 100644 index 0000000000..98d48ad85e --- /dev/null +++ b/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/footer.htm @@ -0,0 +1,21 @@ +<%# +LuCI - Lua Configuration Interface +Copyright 2008 Steven Barth +Copyright 2008 Jo-Philipp Wich + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id: footer.htm 4185 2009-01-30 14:00:35Z jow $ + +-%> +
+ + +

Powered by <%= luci.__appname__ .. " (v" .. luci.__version__ .. ")" %>

+ + + diff --git a/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/header.htm b/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/header.htm new file mode 100644 index 0000000000..657d5e8132 --- /dev/null +++ b/themes/freifunk-hannover/luasrc/view/themes/freifunk-hannover/header.htm @@ -0,0 +1,163 @@ +<%# +LuCI - Lua Configuration Interface +Copyright 2008 Steven Barth +Copyright 2008 Jo-Philipp Wich + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id: header.htm 4079 2009-01-17 17:59:11Z Cyrus $ + +-%> +<% +require("luci.sys") +local load1, load5, load15 = luci.sys.loadavg() +local request = require("luci.dispatcher").context.path +local category = request[1] +local tree = luci.dispatcher.node() +local cattree = category and luci.dispatcher.node(category) +local node = luci.dispatcher.context.dispatched +local hostname = luci.sys.hostname() + +local c = tree +for i,r in ipairs(request) do + if c.nodes and c.nodes[r] then + c = c.nodes[r] + c._menu_selected = true + end +end + +require("luci.i18n").loadc("default") +require("luci.http").prepare_content("application/xhtml+xml") + +-%> + + + + + + + + + + +<% if node and node.css then %> +<% end -%> + + + +<%=striptags( hostname .. ( (node and node.title) and ' - ' .. node.title or '')) %> - LuCI + + + + + + + + +
-- cgit v1.2.3